home *** CD-ROM | disk | FTP | other *** search
/ Borland JBuilder 6 / jbuilder6.iso / Documents / JAVA Programming / examples / 07 / PointCreate.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-09-08  |  771 b   |  7 lines

  1. class PointCreate {
  2.    public static void main(String[] var0) {
  3.       Point var1 = new Point(10, 20);
  4.       System.out.println("x = " + var1.x + " y = " + var1.y);
  5.    }
  6. }
  7.