RosettaCodeData/Task/Call-a-function/LFE/call-a-function-7.lfe
2016-12-05 23:44:36 +01:00

4 lines
118 B
Text

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