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
System.print(Num == Num)  // expect: true
System.print(Num == Bool) // expect: false

// Not equal to other types.
System.print(Num == 123)  // expect: false
System.print(Num == true) // expect: false

System.print(Num != Num)  // expect: false
System.print(Num != Bool) // expect: true

// Not equal to other types.
System.print(Num != 123)  // expect: true
System.print(Num != true) // expect: true