This commit is contained in:
do butterflies cry? 2026-02-27 13:03:33 +10:00
parent 0651bd0118
commit e3a2a17e6d
8 changed files with 92 additions and 0 deletions

8
cli/src/main.rs Normal file
View file

@ -0,0 +1,8 @@
use std::env;
mod rocli;
fn main() {
let args: Vec<String> = env::args().collect();
println!("Hello, world!");
}