Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public class TestClock
  2. {
  3. public static void main(String[] args)
  4. {
  5. Clock myClock = new Clock(2, 34,17);
  6. System.out.println(myClock);
  7.  
  8. for (int i=0; i<0; i++)
  9. {
  10. myClock.tick();
  11. System.out.println(myClock);
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement