Skip to content

Instantly share code, notes, and snippets.

@lorkki
lorkki / thread-example-1.rs
Last active February 25, 2019 17:04
thread examples
use std::thread;
fn main() {
let mut list = Vec::new();
let my_thread = thread::spawn(move || {
add_elements_to(&mut list);
list
});