Files
wren/test/list/reduce_single_item.wren
T

3 lines
96 B
Plaintext
Raw Normal View History

2015-01-16 09:24:18 +01:00
IO.print([1].reduce {|a, b| 42 }) // expect: 1
IO.print([].reduce(1) {|a, b| 42 }) // expect: 1