thesis/tex/code/ownership.rs
2020-05-02 21:11:26 +03:00

10 lines
165 B
Rust

fn say_hello(name: String) {
println!("Hello {}!", name);
}
fn main() {
let name = String::from("Marko");
say_hello(name);
println!("{}", name);
}