Problem A split-string function seems to be missing in R7RS. I came up with the following implementation today: (define (split-string […]

Problem Given the following recursive definition of sum: (define (sum term a next b) (if (> a b) 0 (+ […]

Problem Background: This began with James Colgan‘s Lisp-Dojo for Ruby. My implementation can be found here. I then moved on […]

  • 1
  • 2