Logo Documentation
		
			Simple Commands
			
				- 
					fdfollowed by anumber:
 turtle will move forward number of times;
 Examples:fd 50,fd 87
- 
					bdmeans the same asfdbut backwards;
 Example:bd 10
- 
					rtfollowed by anangle:
 turtle will turn right by the angle;
 Examples:rt 45,rt 120
- 
					ltmeans the same asrtbut the other way;
 Example:lt 90
- 
					pu: turtle stops drawing and moves more secretly;
- 
					pd: turtle starts drawing the line after itself.
Styling Commands
			
				- 
					clrfollowed by acolor:
 turtle changes line color to a new one;
 Examples:clr cyan,clr #fff
- 
					bckgrfollowed by acolor:
 image will be filled with the new color.
 Examples:bckgr purple,bckgr #022a42
Advances Commands
			
				- 
					repeatfollowed by anumberand[array of commands]:
 turtle will repeat commands in the array number of times (can be nested);
 Examples:repeat 3 [fd 100 rt 120],repeat 4 [rt 90 repeat 36 [fd 10 rt 10] ];
- 
					tofollowed by aname:
 create a method, callable by the name.
 Example:
 to triangle repeat 3 [fd 100 rt 120] endtriangle
Other Commands
			
				- 
					save: save an image drawn by the turtle (be careful with this one).
Even More Tips
			
				- 
					Files with .logocodeextension can bedrag&droppedinto the editor area
 (this will update the code in the editor).