This website requires JavaScript.
Explore
Help
Register
Sign In
retoor
/
wren
Watch
1
Star
0
Fork
0
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
Files
9dc939380c317a3e3186e7b71c66a795f7d813cd
wren
/
test
/
core
/
range
/
join.wren
T
5 lines
88 B
Plaintext
Raw
Normal View
History
Unescape
Escape
feat: abstract List's toString into generic join method on Sequence
2015-01-24 04:45:23 +00:00
var a = 1..3
IO.print(a.join) // expect: 123
IO.print(a.join(", ")) // expect: 1, 2, 3
Reference in New Issue
Copy Permalink