libwren-sys 0.1.0

FFI bindings for the wren embedded programming language
Documentation
1
2
3
4
5
6
7
8
9
10
var a = [1, 2, 3]
System.print(a.all {|x| x > 1 }) // expect: false
System.print(a.all {|x| x > 0 }) // expect: true
System.print([].all {|x| false }) // expect: true

// Returns first falsey value.
System.print(a.all {|x| x < 2 ? null : false }) // expect: null

// Returns last truthy value.
System.print(a.all {|x| x }) // expect: 3