Skip to content

Instantly share code, notes, and snippets.

@jschementi
Created August 1, 2009 23:31
Show Gist options
  • Save jschementi/159861 to your computer and use it in GitHub Desktop.
Save jschementi/159861 to your computer and use it in GitHub Desktop.
include System::Collections::Generic
class List
def foo
self.class
end
end
List.of(Fixnum).new.foo
# => System::Collections::Generic::List[Fixnum]
List.of(String).new.foo
# => System::Collections::Generic::List[String]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment