mirror of
https://github.com/micropython/micropython.git
synced 2025-09-05 17:30:41 +02:00
9 lines
91 B
Python
9 lines
91 B
Python
if not a:
|
|
f()
|
|
if not a and b:
|
|
f()
|
|
if not a and not b:
|
|
f()
|
|
while not a:
|
|
f()
|