hcl/t/fun-01.hcl

17 lines
135 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);
(if (= k 30)
(printf "OK\n")
else
(printf "ERROR\n")
)