Created
January 17, 2012 19:34
-
-
Save mediocretes/1628363 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Evens < Stage | |
def process | |
value = 0 | |
loop do | |
output value | |
value += 2 | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment