hcl/t/fun-01.hcl

18 lines
139 B
HCL
Raw Normal View History

2023-11-12 14:03:39 +00:00
defun aaa(a b) {
| c |
set c (+ a b);
return c;
};
set k (aaa 10 20);
2023-11-13 07:36:35 +00:00
if (= k 30) {
printf "OK\n";
}
else {
printf "ERROR\n";
};
2023-11-12 14:03:39 +00:00