Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Run Rust Scripts

## Compile + run in one command
```
rustc -O myscript.rs && ./myscript
```

## Compile to a binary
```
rustc --crate-type bin -C opt-level=3 myscript.rs -o mybinary
```
6 changes: 6 additions & 0 deletions todo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## Core Functionality

- [] Add pre-check for previous installed git

### Test Coverage
- [] Add tests for pre-check phase