Files
2021-03-12 09:39:57 -05:00

5 lines
58 B
Python

def foo(x:int, y:int) -> bool:
return x > y
foo(1,2)