RosettaCodeData/Task/Call-a-function/LFE/call-a-function-7.lfe

5 lines
118 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
...
(cond ((== count limit) (hit-limit-func arg-1 arg-2))
((/= count limit) (keep-going-func count)))
...