RosettaCodeData/Task/Call-a-function/LFE/call-a-function-7.lfe
2023-07-01 13:44:08 -04:00

4 lines
118 B
Text

...
(cond ((== count limit) (hit-limit-func arg-1 arg-2))
((/= count limit) (keep-going-func count)))
...