micropython: add micropython component
This commit is contained in:
5
components/language/micropython/tests/basics/andor.py
Normal file
5
components/language/micropython/tests/basics/andor.py
Normal file
@@ -0,0 +1,5 @@
|
||||
# test short circuit expressions outside if conditionals
|
||||
print(() or 1)
|
||||
print((1,) or 1)
|
||||
print(() and 1)
|
||||
print((1,) and 1)
|
Reference in New Issue
Block a user