Skip to content

Instantly share code, notes, and snippets.

@kasramp
Created October 9, 2018 21:43
Show Gist options
  • Save kasramp/7a1a209e76de6dfb30388fb8fbb2e1a5 to your computer and use it in GitHub Desktop.
Save kasramp/7a1a209e76de6dfb30388fb8fbb2e1a5 to your computer and use it in GitHub Desktop.
A Runnable Example
public class DummyRunnable implements Runnable {
@Override
public void run() {
for(long i=0; i<=10000000;i++) {
System.out.println(i);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment