/* * MainFeast.java * * Created on October 20, 2004, 1:22 PM */ /** * * @author wu_staff */ public class MainFeast { /** Creates a new instance of MainFeast */ public MainFeast() { } public static void main(String [] args){ Moveable x; x = new Point(10,20); x.move(10,10); System.out.println(x); x = new StickFigure(5,10,15); x.move(100,200); System.out.println(x); } }