Skip to content

Instantly share code, notes, and snippets.

@mr-nano
Created January 12, 2021 03:26
Show Gist options
  • Select an option

  • Save mr-nano/7fec48f705c23de3fe0feb985e2effd5 to your computer and use it in GitHub Desktop.

Select an option

Save mr-nano/7fec48f705c23de3fe0feb985e2effd5 to your computer and use it in GitHub Desktop.
This code is mostly an example of what...
public class LargeConsumer {
public static void main(String[] args) {
new Thread() {
@Override
public void run() {
System.out.println("It Works");
}
}.start();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment