diff options
| author | a14m <[email protected]> | 2020-11-29 21:19:31 +0100 |
|---|---|---|
| committer | a14m <[email protected]> | 2020-11-29 23:29:41 +0100 |
| commit | 8f88de4e158681f6321ecb2348005424108e2bd9 (patch) | |
| tree | 3d898de350328438eeacea3bc2d9a1869f95b8c6 /CLI/ruby/bin | |
| parent | 8436fb52f30718b595f8f39a88f063780f7deda9 (diff) | |
Add the basics for input generator
Diffstat (limited to 'CLI/ruby/bin')
| -rwxr-xr-x | CLI/ruby/bin/game-of-life | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CLI/ruby/bin/game-of-life b/CLI/ruby/bin/game-of-life index 8abd1e0..4403598 100755 --- a/CLI/ruby/bin/game-of-life +++ b/CLI/ruby/bin/game-of-life @@ -32,7 +32,8 @@ class CLI < Thor "seed" => rand(100_000), }.merge(options) - GameOfLife::Universe.new(options_with_defaults).run + universe = GameOfLife::Generators::Input.new(options_with_defaults) + p universe end class << self |
