2024-02-03 16:57:53 +00:00
|
|
|
defun x (a :: x y z) {
|
2024-01-14 00:48:57 +00:00
|
|
|
x := (* a a);
|
|
|
|
y := (+ a a);
|
|
|
|
z := (- x y);
|
|
|
|
};
|
|
|
|
|
|
|
|
j := 21;
|
|
|
|
|
|
|
|
if (eqv? j 20) {
|
|
|
|
[a,b,c] := (x 20);
|
|
|
|
q := (x 20);
|
|
|
|
} else {
|
|
|
|
[a,b,c] := (x 30);
|
|
|
|
q := (x 30);
|
|
|
|
};
|
|
|
|
|
2024-09-01 07:28:40 +00:00
|
|
|
if (/= a 900) { printf "ERROR: a is not 900\n" } \
|
2024-01-14 00:48:57 +00:00
|
|
|
else { printf "OK: %d\n" a };
|
|
|
|
|
2024-09-01 07:28:40 +00:00
|
|
|
if (/= b 60) { printf "ERROR: b is not 60\n" } \
|
2024-01-14 00:48:57 +00:00
|
|
|
else { printf "OK: %d\n" b };
|
|
|
|
|
2024-09-01 07:28:40 +00:00
|
|
|
if (/= c 840) { printf "ERROR: c is not 840\n" } \
|
2024-01-14 00:48:57 +00:00
|
|
|
else { printf "OK: %d\n" c };
|
2024-09-01 07:28:40 +00:00
|
|
|
|
|
|
|
[aa,bb,cc] := ((xx := x) 10)
|
|
|
|
|
|
|
|
if (/= aa 100) { printf "ERROR: aa is not 100\n" } \
|
|
|
|
else { printf "OK: %d\n" aa };
|
|
|
|
|
|
|
|
if (/= bb 20) { printf "ERROR: bb is not 20\n" } \
|
|
|
|
else { printf "OK: %d\n" bb };
|
|
|
|
|
|
|
|
if (/= cc 80) { printf "ERROR: cc is not 80\n" } \
|
|
|
|
else { printf "OK: %d\n" cc };
|
|
|
|
|
|
|
|
if (nqv? xx x) { printf "ERROR: xx is not equal to x\n"} \
|
|
|
|
else { printf "OK: xx and x are equal\n" }
|