COMMANDS: LS CL TAP (FILE NAME) NANO (Optional: FILE NAME) (In NANO press 5 and enter to save) RM (FILE NAME) CV (WORD) This converts the .txt conversion list into a virtual file for the project with the name of a specified word. To use it first import a .txt file into the conversion list inside the project. ------------------------------ File Types: .TXT Standard Text File .APP A file that can launch a broadcast .CB- A file that holds crumb- code. Running it runs the program.
TRON: /var.set 1 5 /var.set 2 90 /var.set 3 -90 /var.set 6 7 /texture 6 /turtle.erase /turtle.down /null This is Line 8: Our safe loop anchor /turtle.move 1 /null Always move forward 1 step by default /ifkey d 2 /turtle.turn 2 /goto 8 /ifkey a 2 /turtle.turn 3 /goto 8 /if.color y 4 /print.string "GAME OVER!" /print.var 7 /end /null /var.change 7 4 /var.set 4 1 /turtle.color y /goto 8 Circles: /getanswer 1 What size should the circle be? /math 1 + 1 2 /getanswer 3 What color should the circle be? /var.set 9 y /if 3 = 9 2 /turtle.color y /null /if 3 ! 9 2 /turtle.color b /null /turtle.down /null /turtle.move 1 /var.change 1 0 /turtle.turn 2 /goto 12