depend "io.pla"
depend "string.pla"
add = Func(a: Int, b: Int): Int {
return a + b;
}
print(String(add(1, 3)));