Advertisement
calcpage

C2X3_Window.java

Sep 20th, 2011
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. //Window.java   MrG 2011.0920
  2. import java.awt.Rectangle;
  3. public class Window
  4. {
  5.     public static void main(String[] args)
  6.     {
  7.         Rectangle box = new Rectangle(10,10,20,30);
  8.         System.out.println(box);
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement