separated tuple([] used for assignment) from array(holding data)
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-03-10 22:38:01 +09:00
parent f6f4d0f259
commit 37e0efc74a
6 changed files with 98 additions and 54 deletions

View File

@ -77,6 +77,23 @@ if (y = 29) {
printf "ERROR - %d\n" y
}
## --------------------------------------
k := (defun qq(t) (t + 20))
x := (k 8)
y := (qq 9)
if (x = 28) {
printf "OK - %d\n" x
} else {
printf "ERROR - %d\n" x
}
if (x = 29) {
printf "OK - %d\n" x
} else {
printf "ERROR - %d\n" x
}
## --------------------------------------
defclass A | a b c | {