mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-12-28 06:49:19 +00:00
8 lines
181 B
Rust
8 lines
181 B
Rust
// TODO: Add some function with the name `call_me` without arguments or a return value.
|
|
|
|
fn call_me() {
|
|
println!("JSR");
|
|
}
|
|
fn main() {
|
|
call_me(); // Don't change this line
|
|
} |