blob: 48983b71e1af20a1b686c6ce3e54c352eabf0300 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
fn main() -> () {
test00();
}
fn start() {
log "Started / Finished Task.";
}
fn test00() {
let task t = spawn thread start();
join t;
log "Completing.";
}
|