Files
wren/test/list/reduce_single_item.wren
T

3 lines
96 B
Plaintext
Raw Normal View History

IO.print([1].reduce {|a, b| 42 }) // expect: 1
IO.print([].reduce(1) {|a, b| 42 }) // expect: 1