Created
January 12, 2021 03:26
-
-
Save mr-nano/7fec48f705c23de3fe0feb985e2effd5 to your computer and use it in GitHub Desktop.
This code is mostly an example of what...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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