RosettaCodeData/Task/Fork/D/fork.d

10 lines
151 B
D
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
import core.thread;
import std.stdio;
void main() {
new Thread({
writeln("Spawned thread.");
}).start;
writeln("Main thread.");
}