Files
Core2forAWS-MicroPython/tests/bytecode/mp-tests/if3.py
T

7 lines
66 B
Python

if a and b:
f()
if a or b:
f()
if a and (b or c):
f()