global: a working virtual machine for some of the use cases. APIs and validation still WIP.

This commit is contained in:
2023-11-21 22:18:05 -08:00
parent 0a2d029c5c
commit 6211ad4ff1
53 changed files with 434 additions and 182 deletions

View File

@ -1,11 +1,7 @@
export func main() {
var x = 1
while x <= 5 {
if x == 3 {
println("The value is 3")
} else {
println("The value is not 3")
}
println(x)
x++
}
}