10 lines
151 B
D
10 lines
151 B
D
|
|
import core.thread;
|
||
|
|
import std.stdio;
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
new Thread({
|
||
|
|
writeln("Spawned thread.");
|
||
|
|
}).start;
|
||
|
|
writeln("Main thread.");
|
||
|
|
}
|