circuitpython/tests/import/import2a.py

8 lines
84 B
Python
Raw Normal View History

from import1b import var
2021-03-15 19:27:36 +05:30
print(var)
from import1b import var as var2
2021-03-15 19:27:36 +05:30
print(var2)