Skip to content

Instantly share code, notes, and snippets.

@carlows
Created January 10, 2019 00:20
Show Gist options
  • Save carlows/c28e5b7458fea6254695b5637d501339 to your computer and use it in GitHub Desktop.
Save carlows/c28e5b7458fea6254695b5637d501339 to your computer and use it in GitHub Desktop.
class SuperSilliness < SillyBase
def m1 (x, y, z)
super(1, 2) # Call with 1, 2.
super(x, y) # Call with x, y.
super x, y # Same as above.
super # Call with x, y, z.
super() # Call without arguments.
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment