Skip to content

Instantly share code, notes, and snippets.

@Ikke
Last active August 29, 2015 13:56
Show Gist options
  • Save Ikke/9267099 to your computer and use it in GitHub Desktop.
Save Ikke/9267099 to your computer and use it in GitHub Desktop.
def test_loop(previous_quarter, quarter_index, max_quarter) do
while(previous_quarter % max_quarter != quarter_index) do
puts(quarter_index)
quarter_index += 1
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment