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
Raw Normal View History

2015-09-14 21:26:38 -05:00
// Make me compile!
fn something() -> String {
"hi!"
}
fn main() {
println!("{}", something());
}