mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-01-03 09:19:18 +00:00
14 lines
189 B
Rust
14 lines
189 B
Rust
// functions1.rs
|
|
//
|
|
// Execute `rustlings hint functions1` or use the `hint` watch subcommand for a
|
|
// hint.
|
|
|
|
|
|
fn main() {
|
|
call_me();
|
|
}
|
|
|
|
fn call_me() {
|
|
println!("{}", "I called")
|
|
}
|