Skip to content

Instantly share code, notes, and snippets.

@0x0dea
Created August 15, 2015 12:44
Show Gist options
  • Save 0x0dea/52594e82463c899c05c6 to your computer and use it in GitHub Desktop.
Save 0x0dea/52594e82463c899c05c6 to your computer and use it in GitHub Desktop.
class Array
alias aref []
def [] *args
aref *args.unshift(args.shift.pred)
end
end
xs = [1, 2, 3, 4]
p xs[3]
p xs[2, 2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment