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
var map = {
  "one": 1,
  "two": 2,
  "three": 3
}

System.print(map.containsKey("one")) // expect: true
System.print(map.containsKey("two")) // expect: true
System.print(map.containsKey("three")) // expect: true
System.print(map.containsKey("four")) // expect: false
System.print(map.containsKey("five")) // expect: false