Skip to content

Instantly share code, notes, and snippets.

@EcthorSilva
Created May 3, 2023 16:10
Show Gist options
  • Save EcthorSilva/fbf902ca384c641546b1efa64405bfb9 to your computer and use it in GitHub Desktop.
Save EcthorSilva/fbf902ca384c641546b1efa64405bfb9 to your computer and use it in GitHub Desktop.
public static void delay(int milliseconds){
try{
Thread.sleep(milliseconds);
}catch (InterruptedException e) {
Thread.currentThread().interrupt();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment