Vedant-asati a5382eb242 d1
2024-12-27 19:00:40 +05:30

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();
}