From 8dd9085e1ca89a9c495a9fd8f7375ec2fbd85e00 Mon Sep 17 00:00:00 2001 From: Ian Date: Sat, 6 Dec 2025 21:39:08 -0500 Subject: [PATCH] add todo --- notes.md | 11 +++++++++++ todo.md | 6 ++++++ 2 files changed, 17 insertions(+) create mode 100644 notes.md create mode 100644 todo.md 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