t-map.scm 183 B

1234567891011
  1. ; Currently, map is a C function, so this is a way of testing that the
  2. ; VM is reentrant.
  3. (begin
  4. (define (square x)
  5. (* x x))
  6. (map (lambda (x) (square x))
  7. '(1 2 3)))