Skip to content

Instantly share code, notes, and snippets.

@jfernandez
Created July 21, 2010 22:29
Show Gist options
  • Save jfernandez/485243 to your computer and use it in GitHub Desktop.
Save jfernandez/485243 to your computer and use it in GitHub Desktop.
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