fixed fun-01.hcl
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
hyung-hwan 2023-11-13 16:36:35 +09:00
parent f42508731d
commit b6c1cc8864

View File

@ -6,11 +6,12 @@ defun aaa(a b) {
set k (aaa 10 20); set k (aaa 10 20);
(if (= k 30) if (= k 30) {
(printf "OK\n") printf "OK\n";
else }
(printf "ERROR\n") else {
) printf "ERROR\n";
};