mirror of
https://github.com/micropython/micropython.git
synced 2025-07-22 21:41:07 +02:00
6 lines
123 B
Python
6 lines
123 B
Python
# test short circuit expressions outside if conditionals
|
|
print(() or 1)
|
|
print((1,) or 1)
|
|
print(() and 1)
|
|
print((1,) and 1)
|