libwren-sys 0.1.0

FFI bindings for the wren embedded programming language
Documentation
1
2
3
// A dangling else binds to the right-most if.
if (true) if (false) System.print("bad") else System.print("good") // expect: good
if (false) if (true) System.print("bad") else System.print("bad")