Skip to content

Instantly share code, notes, and snippets.

@yusuke
Last active September 25, 2017 08:03
Show Gist options
  • Save yusuke/8ac92b63a5ac2ab77bde6eb5939e380c to your computer and use it in GitHub Desktop.
Save yusuke/8ac92b63a5ac2ab77bde6eb5939e380c to your computer and use it in GitHub Desktop.
public class Main {
public static void main(String[] args) {
try{
System.out.println("Hello World");
Thread.sleep(1000);
for (int i = 0; i < 100; i++) {
System.out.println(i);
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment