libwren-sys 0.1.0

FFI bindings for the wren embedded programming language
Documentation
class A {
  construct new() {}
}
class B is A {
  construct new() {}
}
class C is B {
  construct new() {}
}
var a = A.new()
var b = B.new()
var c = C.new()

System.print(a is A) // expect: true
System.print(a is B) // expect: false
System.print(a is C) // expect: false
System.print(b is A) // expect: true
System.print(b is B) // expect: true
System.print(b is C) // expect: false
System.print(c is A) // expect: true
System.print(c is B) // expect: true
System.print(c is C) // expect: true