mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 20:50:55 +08:00
![Thakee Nathees](/assets/img/avatar_default.png)
expression interpolation have implemented (ie. "a${b}c") name interpolation yet to do (ie. "a $b c")
8 lines
181 B
Plaintext
8 lines
181 B
Plaintext
|
|
## TODO: add more test of built in functions.
|
|
|
|
assert(list_join([1, 2, 3]) == "123")
|
|
assert(list_join(["hello", " world"]) == "hello world")
|
|
assert(list_join([[], []]) == "[][]")
|
|
|