//    Instruction Example :      picture.rotation.set (objectid,float,float,float)


        screen.resolution.set (512,384)

        screen.set (FRONT)
          text.display ("Press a key to exit.", CENTER,350)
        screen.end ()

        @picture=picture.load ("avo\fruit.jpg")

        picture.persistence.set (@picture,ON)
        picture.display (@picture,CENTER,CENTER)

        repeat ()
          picture.rotation.set (@picture,0.01,0.02,number.random.get (0,360))
          time.wait (0.1)
        until (keyboard.get ())

        script.stop ()