akshitgautam42 e0f9f0208d Excersie 9
2023-11-11 20:16:16 +05:30

13 lines
187 B
Rust

// functions1.rs
//
// Execute `rustlings hint functions1` or use the `hint` watch subcommand for a
// hint.
fn call_me(){
println!("Hello, world!");
}
fn main() {
call_me();
}