space-invade.rs-hack/emulator/src/test2.rs

9 lines
126 B
Rust

struct Foo {}
fn main() {
let foo = Foo{};
thread::spawn(move || {
println!("Here is foo {}", foo);
})
}