import becker.robots.*; /** * Driver for the SaveThePlanet project found * here. *
Date: 2012 04 15 * @author Chris D'Arcy * */ public class SaveThePlanet { public static void main (String[] args){ Nybble nybble = new Nybble(); BinaryBot mario = new BinaryBot(nybble,1,0,Direction.EAST); mario.saveThePlanet(); } }