libwren-sys 0.1.0

FFI bindings for the wren embedded programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Single-expression body.
var c = 0
while (c < 3) System.print(c = c + 1)
// expect: 1
// expect: 2
// expect: 3

// Block body.
var a = 0
while (a < 3) {
  System.print(a)
  a = a + 1
}
// expect: 0
// expect: 1
// expect: 2