libwren-sys 0.1.0

FFI bindings for the wren embedded programming language
Documentation
{
  var foo = "variable"

  class Foo {
    construct new() {}

    foo { "method" }

    method {
      System.print(foo)
    }

    static foo { "class method" }

    static classMethod {
      System.print(foo)
    }
  }

  Foo.new().method // expect: method
  Foo.classMethod  // expect: class method
}