6 lines
78 B
Plaintext
6 lines
78 B
Plaintext
def main() =
|
|
print "Hello World";
|
|
|
|
def add(x: I32, y: I32) : I32 =
|
|
x + y;
|