Class START


class START

-- The program must be started somewhere, this is that place

creation 

   go

feature {NONE} -- Only system may start the program

   go is
         -- Create a particle with an energy 1
         -- Everything else will do the particle itself
      local
         p: PARTICLE
      do
         !!p.make (1., 1)
      end -- go

end -- class START

J.H.11/12/94