mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-01-11 00:00:04 +03:00
12 lines
226 B
Rust
12 lines
226 B
Rust
// functions1.rs
|
|
// Make me compile! Execute `rustlings hint functions1` for hints :)
|
|
|
|
// This needed the call_me fucntion to be defined.
|
|
|
|
fn main() {
|
|
fn call_me() {
|
|
println!("Hello World");
|
|
}
|
|
call_me();
|
|
}
|