Jeroo Lab 1 (Basic)
- Create an island with 1 flower at location (3,2)
- Write a program that will create a jeroo with your name
- Move the jeroo until it is on top of the flower by hopping and turning
- Have the jeroo pick the flower.
Important information:
- Each time you start the Jeroo program you are automatically given a new,
empty island. Use the flower maker
(left
click to create a flower, right-click to erase a flower) to put a flower at
row 3 column 2. DON'T FORGET that you start counting at 0.
- All statements in the program have to be in the main sub. To create a new
Jeroo type:
Dim yourname As Jeroo = New Jeroo( )
- Each time you want to do something you have to tell the program which object
will be acting and what it will do.
yourname.hop( )
yourname.turn(LEFT)
yourname.turn(RIGHT)
yourname.pick( )
- The jeroo has to be on top of the flower to pick it.
