libwren-sys 0.1.0

FFI bindings for the wren embedded programming language
Documentation
class Foo {
  construct new() {}
  method(a, b) { "method %(a) %(b)" }
  [a, b] { "subscript %(a) %(b)" }
}

var foo = Foo.new()

// Allow newlines after commas and before ")".
System.print(foo.method("a",

    "b"

    )) // expect: method a b

// Allow newlines after commas and before "]".
System.print(foo["a",

    "b"

    ]) // expect: subscript a b