Created
August 10, 2015 16:13
-
-
Save ch1ago/1503dc31d46395c7a778 to your computer and use it in GitHub Desktop.
Rode isso no seu IRB :)
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
atual = 0 | |
meta = Float::INFINITY | |
presidente = "Dilma" | |
while presidente == "Dilma" | |
while atual < meta | |
atual += 1 | |
puts "momento atual: #{atual}, meta: #{meta}" | |
sleep(1) | |
end | |
meta *= 2 | |
puts "dobramos a meta: #{meta}" | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment