Graphing
Calculator
Math
Worksheets
Scientific
Calculator
Chart
Maker


Home
Graphing Calc
Algebra
Fun Games
Geometry
Interactive
Trigonometry
Scientific Calc
Home
Graphing Calc
Algebra
Fun Games
Geometry
Interactive
Trigonometry
Scientific Calc

GwJeroo

Starting With Java: Jeroo Style

Jeroo Page

    First: Downloading and Installing GWJeroo
  • 1) Download this file and extract to a new folder
  • 2) Call me over so I can set up your computer to be able to run GWJeroo
  • 3) Copy and paste the following code into a new class in eclipse.
import info.gridworld.world.*;
import info.gridworld.grid.Location;


public class runner {
	
	public static void main(String[] args) {
	    JerooWorld world = new JerooWorld();
	    ExtendedJeroo kim = new ExtendedJeroo();
	    world.add(new Location(0,0),kim);
	    world.show();
	    
	    kim.turn(Jeroo.RIGHT);
	    kim.turnAndGo();
	    

	
	}

	
}