Initial commit
This commit is contained in:
8
solutions/02_functions/functions1.rs
Normal file
8
solutions/02_functions/functions1.rs
Normal file
@@ -0,0 +1,8 @@
|
||||
// Some function with the name `call_me` without arguments or a return value.
|
||||
fn call_me() {
|
||||
println!("Hello world!");
|
||||
}
|
||||
|
||||
fn main() {
|
||||
call_me();
|
||||
}
|
||||
Reference in New Issue
Block a user