mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 12:35:34 -04:00
14 lines
144 B
Python
14 lines
144 B
Python
# test return statement
|
|
|
|
def f():
|
|
return
|
|
print(f())
|
|
|
|
def g():
|
|
return 1
|
|
print(g())
|
|
|
|
def f(x):
|
|
return 1 if x else 2
|
|
print(f(0), f(1))
|