Advertisement
Guest User

Untitled

a guest
Aug 30th, 2014
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
D 0.15 KB | None | 0 0
  1. import std.stdio;
  2. import core.thread;
  3.  
  4. void main() {
  5.     for (;;) {
  6.         writeln("Hello world!");
  7.         Thread.sleep(1.seconds);
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement