mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 22:28:45 +01:00
6 lines
120 B
Plaintext
6 lines
120 B
Plaintext
var str = "string"
|
|
|
|
IO.print(str.join("") == str) // expect: true
|
|
|
|
IO.print(str.join(", ")) // expect: s, t, r, i, n, g
|