Files
funk/tests/math.funk

8 lines
104 B
Plaintext

main func {
println(1 + 1)
x = 2 * 2
if (x == 4) {
println("It's working!")
}
}