Created
July 21, 2010 22:29
-
-
Save jfernandez/485243 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Dream | |
def inception(idea) | |
time_multiplier = 1 | |
return enter_dream(idea, time_multiplier) | |
end | |
def enter(idea, time_multiplier) | |
time_multiplier = time_multiplier / 2 | |
if idea.has_taken_root? | |
return true | |
else | |
enter(idea, time_multiplier) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment