github.com/ncodes/nomad@v0.5.7-0.20170403112158-97adf4a74fb3/client/driver/test-resources/java/Hello.java (about) 1 public class Hello { 2 public static void main(String[] args) { 3 while (true) { 4 System.out.println("Hello"); 5 try { 6 Thread.sleep(1000); //1000 milliseconds is one second. 7 } catch(InterruptedException ex) { 8 Thread.currentThread().interrupt(); 9 } 10 } 11 } 12 }