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
9a959c9eb9813a678b85917db8ab118d5d8154d2
wren
/
test
/
list
/
map.wren
T
4 lines
79 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Cleanups for merging map method
2014-02-15 00:34:30 -06:00
var a = [1, 2, 3]
Make Sequence base class.
2014-02-16 09:20:31 -08:00
var b = a.map(fn (x) x + 1)
Cleanups for merging map method
2014-02-15 00:34:30 -06:00
IO.print(b) // expect: [2, 3, 4]
Reference in New Issue
Copy Permalink