``` python def func_1(N: int): print(N) def func_2(x: int) -> int: return x+N N = 0 func_1(42) ``` Python prints `42`, but Codon prints `None`.