hcl/t/fun-01.hcl
hyung-hwan b6c1cc8864
Some checks failed
continuous-integration/drone/push Build is failing
fixed fun-01.hcl
2023-11-13 16:36:35 +09:00

18 lines
139 B
HCL

defun aaa(a b) {
| c |
set c (+ a b);
return c;
};
set k (aaa 10 20);
if (= k 30) {
printf "OK\n";
}
else {
printf "ERROR\n";
};