Skip to content

Instantly share code, notes, and snippets.

@pce
Created July 25, 2014 16:24
Show Gist options
  • Select an option

  • Save pce/d3c504f6a83f28d3ab4a to your computer and use it in GitHub Desktop.

Select an option

Save pce/d3c504f6a83f28d3ab4a to your computer and use it in GitHub Desktop.
euclidian
#!/bin/env ruby
def euclid(m, k)
if k==0
return m
else
return euclid(k, m%k)
end
end
puts euclid(2,8)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment