compile-claw 0.2.6

The Claw language compiler library
Documentation
1
2
3
4
5
6
7
8
9
10
11
export func identity(s: string) -> string {
    return s;
}

export func hello-world() -> string {
    return "hello, world!";
}

export func concat(left: string, right: string) -> string {
    return left + right;
}