wren 0.1.12

Bindings to the Wren scripting language API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
class Test {
    static zero() {
        System.print("zero()")
    }

    static one(v) {
        System.print("one(%(v))")
    }

    static two(v1, v2) {
        System.print("two(%(v1), %(v2))")
    }
}