https://github.com/chadnpc/rustplayground
Web app to help learn rust
https://github.com/chadnpc/rustplayground
Last synced: over 1 year ago
JSON representation
Web app to help learn rust
- Host: GitHub
- URL: https://github.com/chadnpc/rustplayground
- Owner: chadnpc
- License: mit
- Created: 2022-06-03T12:00:53.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-25T00:12:51.000Z (over 1 year ago)
- Last Synced: 2025-02-10T01:31:42.993Z (over 1 year ago)
- Language: Rust
- Homepage:
- Size: 4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Rust Sandbox
> Some fundamental syntax of the Rust language.
## Quick Start
Un-comment the file function to run
``` bash
# Run With Cargo
cargo run
# Build
cargo build
# Build for production
cargo build --release
```
## Notes
All branches Ending in .rs are completely separate repos/projects (They can't be merged into the main)
Its just convinient this way since this is a practice / playground repo, so I keep all projects in this same repo, but on different branches.
## [Crates](https://crates.io/)
Most of these small Projects are [cli tools](https://crates.io/categories/command-line-utilities)