05
repetition

challenge

  1. make use of the trace statement and a loop to print the following to the output panel:
    • the number sequence 10,11,12, ... 99
    • the number sequence 99,98,97, ... 10
  2. write a function that makes a shape out of several (maybe 5) lines. have the function accept at least one parameter that controls some aspect of the shape.
    function mySpecialShape(param1:???):void {
        // your code here
    }