github.com/taylorchu/nomad@v0.5.3-rc1.0.20170407200202-db11e7dd7b55/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  }