Skip to content

Instantly share code, notes, and snippets.

@kachick
Created August 15, 2013 05:51
Show Gist options
  • Select an option

  • Save kachick/6238568 to your computer and use it in GitHub Desktop.

Select an option

Save kachick/6238568 to your computer and use it in GitHub Desktop.
Integer#pred from Haskell
class Integer
def pred
self - 1
end
end
1.pred #=> 0
0.pred #=> -1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment