add keyword support 'true' and 'false'

true is now number 1.0

false is number 0.0
This commit is contained in:
ValKmjolnir
2023-01-16 17:44:56 +08:00
parent 60a3f41f1d
commit 21a8579d8f
11 changed files with 95 additions and 51 deletions
+1
View File
@@ -51,6 +51,7 @@ z.funcc(); #//f is called
println(z.funcccall); #//func(..){..}
z2.listt2[3].hashh.funcc(); #//f is called
println(y1[f2()][w]); #//hello
println(true,' ',false); #//1 0
# ValKmjolnir