Further addition improvements
This commit is contained in:
7
tests/math.funk
Normal file
7
tests/math.funk
Normal file
@@ -0,0 +1,7 @@
|
||||
main func {
|
||||
println(1 + 1)
|
||||
x = 2 * 2
|
||||
if (x == 4) {
|
||||
println("It's working!")
|
||||
}
|
||||
}
|
||||
7
tests/to1000.funk
Normal file
7
tests/to1000.funk
Normal file
@@ -0,0 +1,7 @@
|
||||
main func {
|
||||
x = 0
|
||||
while (x == 1000) {
|
||||
x = 1 + x
|
||||
println(x)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user