#70,24,10,10 1-5 Squares and rectangles with two variables #addo Make a procedure RECTANGLE with two variables (:width and :height) so you can make rectangles and squares of different sizes: #square4 #lamp ===================== TO RECTANGLE :width :height REPEAT 2 [FORWARD :height RIGHT 90 FORWARD :width RIGHT 90] END