fn main()

in rust/src/main.rs [2:7]


fn main() {
    println!("Hello, world!");
    let s = String::new();
    let s1 = s;
    let s2 = s;
}