mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 04:37:47 +08:00
0d87403f6b
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([[], []]) == "[][]")
|
|
|