Skip to content

Instantly share code, notes, and snippets.

@kunigami
Last active December 26, 2019 17:19
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 kunigami/f29d41a27eac17932a7b12be1865e358 to your computer and use it in GitHub Desktop.
Save kunigami/f29d41a27eac17932a7b12be1865e358 to your computer and use it in GitHub Desktop.
class Parametrized(Generic[T]):
value: T
def __init__(self, value: T) -> None:
self.value = value
def getValue(self) -> T:
return self.value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment