; Lets create the player and position it.
      Create(players().tPlayer,1)
      Position(PLayers().tplayer,1,50,100)

   ; Next, lets create and randomly position 10 aliens 
      For ThisAlien=1 to 10
        Create(Aliens().tAlien,ThisAlien)
        Position(Aliens().tAlien,ThisAlien,rnd(1000),rnd(1000))
      next