ketos=> (define (x)
(define (x-1) "hello")
(x-1))
Traceback:
In main, define x
execution error: type error: expected string; found list: (define (x-1) "hello")
Would something like this be planned to be added to ketos?
#60 is related in the sense that let-rec, and define in this way would achieve lambda recursion as well.
Would something like this be planned to be added to ketos?
#60 is related in the sense that let-rec, and define in this way would achieve lambda recursion as well.