Skip to content

Commit

Permalink
Merge pull request #8 from meiji163/trunk
Browse files Browse the repository at this point in the history
game of life
  • Loading branch information
Nate Smith authored Oct 18, 2021
2 parents b76ac79 + 44b3eb2 commit 3ab5b94
Show file tree
Hide file tree
Showing 2 changed files with 393 additions and 2 deletions.
9 changes: 7 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,12 @@ starfield
--speed is the speed to fly through space (default 4)
pipes
--color can either be "full" of "off"`,
--color can either be "full" of "off"
life
--seed is the starting state. (default random)
Seeds: gilder, R, dragon, pulsar, gun, noise`,
RunE: func(cmd *cobra.Command, args []string) error {
opts.SaverArgs = args
if opts.Repository == "" {
Expand All @@ -141,9 +146,9 @@ pipes
"pipes": savers.NewPipesSaver,
"starfield": savers.NewStarfieldSaver,
"pollock": savers.NewPollockSaver,
"life": savers.NewLifeSaver,
// TODO aquarium
// TODO noise
// TODO game of life
// TODO issues/pr float by?
}
if opts.Screensaver == "" {
Expand Down
Loading

0 comments on commit 3ab5b94

Please sign in to comment.