Method: Life::CLI::Base#random
- Defined in:
- lib/life/cli.rb
#random ⇒ Object
31 32 33 34 35 36 37 38 |
# File 'lib/life/cli.rb', line 31 def random seed = build_random_seed [:width], [:height] max_gen = [:generations] world = World.new([:width], [:height], seed) display_simulation max_gen, [:width], [:height], world rescue Interrupt quit([:height]) end |