mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-17 01:51:39 +09:00
10 lines
102 B
Python
10 lines
102 B
Python
def foo():
|
|
return 42
|
|
|
|
assert foo() == 42
|
|
|
|
def my_func(a,):
|
|
return a+2
|
|
|
|
assert my_func(2) == 4
|