libwren-sys 0.1.0

FFI bindings for the wren embedded programming language
Documentation
1
2
3
4
5
6
// Evaluate the 'else' expression if the condition is false.
if (true) System.print("good") else System.print("bad") // expect: good
if (false) System.print("bad") else System.print("good") // expect: good

// Allow block body.
if (false) null else { System.print("block") } // expect: block