Advertisement
Guest User

Untitled

a guest
May 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public void run()
  2. {
  3. // Create a rectangle with width 5 and height 12
  4. Rectangle rect = new Rectangle(5,12);
  5.  
  6. // Then print it out
  7. System.out.println(rect);
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement