Hydra Logo 1.4 ready for download!
Dreamwriter
Posts: 22
Hydra Logo is now ready for human consumption! If you have a Hydra, you can download it and start Logoizing away. With this programming language you can draw neat things and stuff without using any sort of compiler/editor, just type commands and watch them happen. Here's a fun program you can type to get you started:
to spiral :ln
fd :ln
rt 92
fd :ln+1
rt 92
spiral :ln+2
end
Then just enter
spiral 4
and watch the fun!
JMM_logo_03-30-07.zip
Post Edited (Dreamwriter) : 3/31/2007 7:50:47 AM GMT
to spiral :ln
fd :ln
rt 92
fd :ln+1
rt 92
spiral :ln+2
end
Then just enter
spiral 4
and watch the fun!
JMM_logo_03-30-07.zip
Post Edited (Dreamwriter) : 3/31/2007 7:50:47 AM GMT
Comments
Here's a fun new command to demo Hydra Logo, that couldn't run in 1.0 (for many reasons), a classic: a fractal tree
to tree :size
if :size < 5
{
stop
}
forward :size
right 30
tree :size-5
left 60
tree :size-5
right 30
backward :size
Full list of changes from 1.2:
1.4 Turtle can go off edges of screen without causing bugs
Other miscellaneous bug fixes
Added support for NES gamepads (ifpad1, ifpad2)
If commands can now run commands on same line as if statement
If command brackets are now the nomal [noparse][[/noparse] ]
EEPROM is now autoloaded upon restart, removed load command
Moved text area up to avoid overscan (added commands to go back)
Added "_demo" version with demo autoloader
Optimized/organized code for user-created commands
JMM_logo_03-30-07.zip
I am trying to set up a simple cheap Logo based robot and looking for alternatives to input data and commands...
...and interested in checking out your Logo Code, however i am unable to download the .zip file above. (maybe zips are blocked on forum !!)
But, I think the zip attachement got lost when Parallax transitioned to forum to new forum software...
I thought that they fixed it so all the old attachements worked, but this one clearly has a problem...
regards
Gerry
https://www.dropbox.com/s/2jfkbivhrhtd5im/MEEDS_LOGO.zip
Jeff