Skip to content

Instantly share code, notes, and snippets.

@kachick
Created August 15, 2013 03:43
Show Gist options
  • Save kachick/6238091 to your computer and use it in GitHub Desktop.
Save kachick/6238091 to your computer and use it in GitHub Desktop.
Array#init from Haskell
class Array
def init
self[0..-2]
end
end
[1, 3, 7].init #=> [1, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment