circuitpython/tests/import/import2a.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
84 B
Python
Raw Permalink Normal View History

from import1b import var
2021-03-15 09:57:36 -04:00
print(var)
from import1b import var as var2
2021-03-15 09:57:36 -04:00
print(var2)