rustlings/exercises/02_functions/functions1.rs

6 lines
144 B
Rust
Raw Normal View History

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