racket/collects/htdch/geometry/Posn.java
Matthias Felleisen e7a03a3018 hmph?
svn: r3632
2006-07-06 19:52:04 +00:00

11 lines
129 B
Java

package geometry;
public class Posn {
public int x, y;
public Posn( int x, int y ) {
this.x = x;
this.y = y;
}
}