Skip to content

Instantly share code, notes, and snippets.

@rinaldodev
Last active March 24, 2019 02:05
Show Gist options
  • Save rinaldodev/f8644c324083198b9c46b37895233263 to your computer and use it in GitHub Desktop.
Save rinaldodev/f8644c324083198b9c46b37895233263 to your computer and use it in GitHub Desktop.
public static void main(String[] args) {
new Thread(new Runnable() {
@Override
public void run() {
System.out.println("Hello World");
}
}).run();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment