mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 16:35:44 +03:00
12 lines
268 B
Java
12 lines
268 B
Java
public class Hello {
|
|
public static void main(String[] args) {
|
|
while (true) {
|
|
System.out.println("Hi");
|
|
try {
|
|
Thread.sleep(1000); //1000 milliseconds is one second.
|
|
} catch(InterruptedException ex) {
|
|
Thread.currentThread().interrupt();
|
|
}
|
|
}
|
|
}
|
|
} |