mirror of
https://github.com/micropython/micropython.git
synced 2025-09-10 11:50:40 +02:00
16 lines
216 B
Python
16 lines
216 B
Python
# using a bool as a conditional
|
|
@micropython.viper
|
|
def f():
|
|
x = True
|
|
if x:
|
|
print("x", x)
|
|
f()
|
|
|
|
# using an int as a conditional
|
|
@micropython.viper
|
|
def g():
|
|
y = 1
|
|
if y:
|
|
print("y", y)
|
|
g()
|