Skip to content

Instantly share code, notes, and snippets.

@marick
Created June 11, 2010 17:16
Show Gist options
  • Save marick/434773 to your computer and use it in GitHub Desktop.
Save marick/434773 to your computer and use it in GitHub Desktop.
blinkers
(def *horizontal-blinker* [ [0,1] [1,1], [2,1] ] )
(def *vertical-blinker* [ [1,2]
[1,1]
[1,0] ])
(example "of blinkers blinking"
(next-world *horizontal-blinker*) => *vertical-blinker*
(next-world *vertical-blinker*) => *horizontal-blinker*
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment