6f81348fa2
Allows things like: if 1: ...
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()
|