mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 12:46:53 +08:00
13 lines
293 B
Plaintext
13 lines
293 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
|
||
|
|
||
|
print("-------------------")
|
||
|
print(" IMPORT TESTS DONE ")
|
||
|
print("-------------------")
|