Results 1 to 1 of 1

Thread: great program for first time coders

  1. #1
    Join Date
    Nov 2011
    Posts
    34
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default great program for first time coders

    http://home.cc.gatech.edu/dorn/jeroo

    basically its just a learning resoursce, really helped me when i was brand new to any type of programming. sorry if im not allowed to post links, i guess a mod can verify if its real or not. but it is.\

    this is the first jeroo script i made,


    Code:
    method main()
    {
    Jeroo jack = new Jeroo();
    if(jack.hasFlower())
    {
    jack.hop(2);
    jack.toss();
    jack.hop(3);
    }
       else
    {
    jack.turn(RIGHT);
    jack.hop(3);
    jack.pick();
    jack.turn(RIGHT);
    jack.turn(RIGHT);
    jack.hop(2);
    jack.turn(RIGHT);
    jack.hop(2);
    jack.toss();
    jack.hop(3);
    }  
    
    if(jack.isFlower(AHEAD))
    {
    jack.hop(14);
    jack.pick();
    jack.turn(RIGHT);
    }
      else
    {
    jack.turn(RIGHT);
    jack.hop(19);
    }
    }


    and the picture is of the island i did it on, just something to show you guys the sorta fun stuff you can do to screw around on here. anyways, hope this helps some of you with your VERY first steps into coding
    Last edited by billybobdead; 09-19-2012 at 01:42 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •