Skip to content

Instantly share code, notes, and snippets.

@brv00
Last active May 2, 2018 06:46
Show Gist options
  • Save brv00/7db8735c8446a38c82c0a283b9c30546 to your computer and use it in GitHub Desktop.
Save brv00/7db8735c8446a38c82c0a283b9c30546 to your computer and use it in GitHub Desktop.
;;; list constructors
(use-module "elf/iterate.scm")
(define (scanL xs how so-far)
(foldL xs (lambda (x so-far)
`(,(how x (car so-far)) . ,so-far))
`(,so-far)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment