-- READ THE INSTRUCTIONS -- This is a simplified version of the programming language Logo, with the same style of turtle graphics. Press the "Add" button to add a command to the program. The "Clear button clears the current program, and the "Run" button runs the program. Here are the commands I have so far (n stands for the input you give the command, i.e. fd 100 goes forward 100 units). - fd n goes forward n units (the units are somewhat arbitrary) - bk n goes backwards n units - rt n turns right n degrees - lt n turns left n degrees - pd starts using the pen - pu stops using the pen - pc n changes the pen to color n (n still has to be a number) - cl clears the screen
Current Version: Alpha 2 Things I hope to add in my next version: - variables (the number will probably be limited) - loops (these might not be added for a while) Things I might eventually add: - if statements =procedures that can have inputs