libwren-sys 0.1.0

FFI bindings for the wren embedded programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var found = []
for (i in 1..1000) {
  var foo = 1337
  for (i in 1..1000) {
    foo = { "a" : foo, "b": foo }
  }
  var bar = foo
  for (i in 1..1000) {
    bar = bar["a"]
  }
  found.add(bar)
}

System.gc()
System.print(found.all {|i| i == 1337}) // expect: true
System.print("done") // expect: done