From bf593d41fccc7cda9ae7b557f549d8c6e007c042 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 20 Jun 2026 05:22:18 +0800 Subject: chore: scaffold initial Rust project with Cargo and CLI structure --- src/main.rs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/main.rs (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..9e14dc6 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,6 @@ +mod args; +pub use args::*; + +fn main() { + println!("Hello, world!"); +} -- cgit