diff --git a/notes.md b/notes.md new file mode 100644 index 0000000..6ddf73b --- /dev/null +++ b/notes.md @@ -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 +``` \ No newline at end of file diff --git a/todo.md b/todo.md new file mode 100644 index 0000000..8323c63 --- /dev/null +++ b/todo.md @@ -0,0 +1,6 @@ +## Core Functionality + +- [] Add pre-check for previous installed git + +### Test Coverage +- [] Add tests for pre-check phase \ No newline at end of file