Skip to content

Instantly share code, notes, and snippets.

@ninjs
Created April 21, 2015 14:57
Show Gist options
  • Save ninjs/35279faf807a69bdca32 to your computer and use it in GitHub Desktop.
Save ninjs/35279faf807a69bdca32 to your computer and use it in GitHub Desktop.
num1 = 3
num2 = 5
sum = 0
while sum < 99999
sum = num1 + num2
print sum
num1 += 3
num2 += 5
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment