mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 04:37:47 +08:00
3e444ad196
- main moved to cli
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("-------------------") |