Skip to content

Instantly share code, notes, and snippets.

@ievgiienko
Created April 11, 2023 11:12
Show Gist options
  • Save ievgiienko/f3c4e298281ea74d66eaa459d1ea4a87 to your computer and use it in GitHub Desktop.
Save ievgiienko/f3c4e298281ea74d66eaa459d1ea4a87 to your computer and use it in GitHub Desktop.
package org.example;
import java.util.Date;
public class Main {
public static void main(String[] args) throws InterruptedException {
while (true) {
System.out.println(new Date() + " Hello world!");
Thread.sleep(1000);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment