Skip to content

Instantly share code, notes, and snippets.

@autoletics
Last active January 29, 2017 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save autoletics/29d40a4ece5fc8fe01d7fa1b91f8faa9 to your computer and use it in GitHub Desktop.
Save autoletics/29d40a4ece5fc8fe01d7fa1b91f8faa9 to your computer and use it in GitHub Desktop.
public static void main(String[] args) {
for(int i=10; i > 0; i--)
ingress();
}
static void ingress() { transit(); transit(); }
static void transit() { egress(); egress(); }
static void egress() { parkNanos(1_000_000); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment