Skip to content

Instantly share code, notes, and snippets.

@kunigami
Created December 26, 2019 03:06
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/fdfeea52c58dcd2510107d39221f4fa9 to your computer and use it in GitHub Desktop.
Save kunigami/fdfeea52c58dcd2510107d39221f4fa9 to your computer and use it in GitHub Desktop.
class C:
_n: int
def __init__(self, n: int) -> None:
self._n = n
def inc(self) -> None:
self._n += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment