mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 12:46:53 +08:00
![Thakee Nathees](/assets/img/avatar_default.png)
- all import statement (native or script file) have the same syntax - allow relative (including parent directory) imports - cyclic imports are handled by caching the scripts - `import foo` can potentially import `<searchpath>/foo/_init.pk` - * import are not supported anymore
8 lines
99 B
Plaintext
8 lines
99 B
Plaintext
|
|
import math ## core math module
|
|
|
|
## math script sqrt fn.
|
|
def sqrt(n)
|
|
return ".math sqrt fn"
|
|
end
|