color   color('red'); (color)
move    move(20,37); (X,Y)
line    line(20,37); (X,Y)
rect    rect(10,20); (width,height)
oval    oval(50); (radius)
oval    oval(20,40); (width,height)
clear   clear();
path    path([50,50,0,100]);
var     var width=400;

Advanced

for(var i=0;i<10;i++){
  //Runs five times
}

if(/*Some conditional statement for example*/ i<5){
  //if i is 0-4 this runs
}
else{
  //if i is 5-9 this runs
}