mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-03-04 13:15:55 +08:00

- cJSON library was added to thirdparty for json module - json module added and json.parse() function implemented - thirdparty library sources are directly imported - io.readfile() function added - less than function fix (wasn't returning boolean) - min, max functions added - map check values equal implemented
9 lines
172 B
Plaintext
9 lines
172 B
Plaintext
import path
|
|
|
|
THIS_PATH = path.dirname(__file__)
|
|
|
|
assert('path.pk' in path.listdir(THIS_PATH))
|
|
|
|
# If we got here, that means all test were passed.
|
|
print('All TESTS PASSED')
|