erg/examples/declare.py
2023-03-16 22:39:34 +09:00

13 lines
176 B
Python

x = 0
def f(x: int) -> int:
return x + 1
class C:
def __init__(self, x: int) -> None:
self.x = x
def f(self, y: int) -> int:
return self.x + y