summaryrefslogtreecommitdiff
path: root/scheme/repeat.sls
blob: b3c74855d1b5d1e44d6e46d68338da128c401e4b (plain)
1
2
3
4
5
6
7
(library (repeat)
  (export call)
  (import (rnrs))

  (define (call n proc . args)
    (let loop ((i 0))
      (when (< i n) (apply proc args) (loop (+ 1 i))))))