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
var i = 0
while (true) {
  i = i + 1
  System.print(i)
  if (i <= 2) continue
  System.print(i)
  break
}
// expect: 1
// expect: 2
// expect: 3
// expect: 3