SRFI-219 style internal define is not supported

Issue #283 resolved
Takashi Kato repo owner created an issue

SRFI-219 style define is sometimes useful, however it’s not supported on internal define. The below doesn’t work

(define (foo l)
  (define ((proc a) b) #| do something |#)
  (map (proc 'a') l))

It’d be nice to support also on internal define

Comments (1)

  1. Log in to comment