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