https://github.com/blairnangle/learning-rust
Crustacean nation.
https://github.com/blairnangle/learning-rust
rust
Last synced: 2 months ago
JSON representation
Crustacean nation.
- Host: GitHub
- URL: https://github.com/blairnangle/learning-rust
- Owner: blairnangle
- Created: 2023-02-08T15:40:56.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-10T17:10:05.000Z (over 2 years ago)
- Last Synced: 2025-01-25T11:41:56.575Z (4 months ago)
- Topics: rust
- Language: Rust
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# learning-rust
## Usage
Note that binaries are compiled to and executed from a specific Git-ignored directory.
### Compile
```shell
rustc --out-dir bin src/main.rs
```### Run
```shell
./bin/main
```## Testing
```shell
cargo test
```