2015-04-22 18:18:28 -04:00
|
|
|
# using False as a conditional
|
|
|
|
@micropython.viper
|
|
|
|
def f():
|
|
|
|
x = False
|
|
|
|
if x:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
print("not x", x)
|
|
|
|
f()
|
|
|
|
|
|
|
|
# using True as a conditional
|
2014-09-29 11:41:37 -04:00
|
|
|
@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()
|