mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 12:46:53 +08:00
10 lines
216 B
Plaintext
10 lines
216 B
Plaintext
|
|
## Testing import statement
|
|
import lang
|
|
import lang, path
|
|
import lang as o, path as p
|
|
from lang import clock
|
|
from lang import clock as c
|
|
from path import abspath, curdir
|
|
from path import abspath as ap, curdir as cd
|