Skip to content

Instantly share code, notes, and snippets.

@ch1ago
Created August 10, 2015 16:13
Show Gist options
  • Save ch1ago/1503dc31d46395c7a778 to your computer and use it in GitHub Desktop.
Save ch1ago/1503dc31d46395c7a778 to your computer and use it in GitHub Desktop.
Rode isso no seu IRB :)
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