libwren-sys 0.1.0

FFI bindings for the wren embedded programming language
Documentation
class Foo {
  construct new() {}

  set(a, b, c, d, e) {
    __a = a
    __b = b
    __c = c
    __d = d
    __e = e
  }

  write() {
    System.print(__a)
    System.print(__b)
    System.print(__c)
    System.print(__d)
    System.print(__e)
  }
}

Foo.new().set(1, 2, 3, 4, 5)
Foo.new().write()
// expect: 1
// expect: 2
// expect: 3
// expect: 4
// expect: 5