Skip to content

Instantly share code, notes, and snippets.

@enebo
Created December 4, 2020 16:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enebo/af5645fab36f65799aae153e10a4415d to your computer and use it in GitHub Desktop.
Save enebo/af5645fab36f65799aae153e10a4415d to your computer and use it in GitHub Desktop.
java_import java.util.HashMap
class Extend < HashMap
def initialize(a, b)
c = a
p c
super
end
end
a = Extend.new(10, 0.5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment