Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public class Main {
  2.  
  3. public static void main(String[] args) {
  4. while (true) {
  5. try {
  6. Thread.sleep(1000);
  7. System.out.println("I'm doing some work ...");
  8. } catch (InterruptedException ex) {
  9. Thread.currentThread().interrupt();
  10. }
  11. }
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement