1
0
Files
2025-12-17 07:57:21 +00:00

9 lines
155 B
Rust

// Some function with the name `call_me` without arguments or a return value.
fn call_me() {
println!("Hello world!");
}
fn main() {
call_me();
}