rustlings/exercises/02_functions/functions1.rs

6 lines
144 B
Rust
Raw Normal View History

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