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)
|
2021-04-20 01:22:44 -04:00
|
|
|
|
|
|
|
|
2015-04-22 18:18:28 -04:00
|
|
|
f()
|
|
|
|
|
2023-02-01 03:08:41 -05:00
|
|
|
|
2015-04-22 18:18:28 -04:00
|
|
|
# using True as a conditional
|
2014-09-29 11:41:37 -04:00
|
|
|
@micropython.viper
|
|
|
|
def f():
|
|
|
|
x = True
|
|
|
|
if x:
|
|
|
|
print("x", x)
|
2021-04-20 01:22:44 -04:00
|
|
|
|
|
|
|
|
2014-09-29 11:41:37 -04:00
|
|
|
f()
|
|
|
|
|
2023-02-01 03:08:41 -05:00
|
|
|
|
2014-09-29 11:41:37 -04:00
|
|
|
# using an int as a conditional
|
|
|
|
@micropython.viper
|
|
|
|
def g():
|
|
|
|
y = 1
|
|
|
|
if y:
|
|
|
|
print("y", y)
|
2021-04-20 01:22:44 -04:00
|
|
|
|
|
|
|
|
2014-09-29 11:41:37 -04:00
|
|
|
g()
|
2018-08-04 08:16:24 -04:00
|
|
|
|
2023-02-01 03:08:41 -05:00
|
|
|
|
2018-08-04 08:16:24 -04:00
|
|
|
# using an int as a conditional that has the lower 16-bits clear
|
|
|
|
@micropython.viper
|
|
|
|
def h():
|
|
|
|
z = 0x10000
|
|
|
|
if z:
|
|
|
|
print("z", z)
|
2021-04-20 01:22:44 -04:00
|
|
|
|
|
|
|
|
2018-08-04 08:16:24 -04:00
|
|
|
h()
|