
PRIMITIVES
----------

The following primitives are available:

    create 620 460
    # create the movie - width, height

    clear 0, 0, 0
    # clear(R,G,B) - fill the screen with solid colour.

    load 0, 0, jane.png
    # load an image at x,y

    move 0, -1
    # move the previously loaded image by the x,y offset.

    stop
    # stop animation

    save jane.swf
    # save the movie

    exit
    # exit the script


Sugar
-----

 "move 0 1" is equivalent to "move 0, 1".

  repeat( 3, move 0,1 ) is equivalent to:
move 0,1
move 0,1
move 0,1

