rustlings/exercises/02_functions/functions1.rs

6 lines
144 B
Rust
Raw Normal View History

2024-05-20 20:43:18 -04:00
// TODO: Add some function with the name `call_me` without arguments or a return value.
2015-09-17 21:12:00 -04:00
fn main() {
2024-05-20 20:43:18 -04:00
call_me(); // Don't change this line
2015-09-17 21:12:00 -04:00
}