Skip to content

Instantly share code, notes, and snippets.

@gokulnath
Created February 11, 2012 16:49
Show Gist options
  • Save gokulnath/1802106 to your computer and use it in GitHub Desktop.
Save gokulnath/1802106 to your computer and use it in GitHub Desktop.
def Sequencer(a, b, c)
i = 0
until a > c do
d[i] = a + b
a = a + b
i += 1
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment