1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-20 12:22:35 +02:00
rustlings/ex2.rs
2018-02-21 22:09:53 -08:00

11 lines
118 B
Rust

// ex2.rs
// Make me compile!
fn something() -> String {
"hi!"
}
fn main() {
println!("{}", something());
}