This repository has been archived on 2023-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
rustlings-exercises-completed/ex2.rs

10 lines
108 B
Rust

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