Run use std::thread; fn main() { // on lance le thread let handle = thread::spawn(|| { "Salutations depuis un thread !" }); // on attend que le thread ...
確定! 回上一頁