lisper icon indicating copy to clipboard operation
lisper copied to clipboard

it seems doesn't support recursive function

Open ezksd opened this issue 6 years ago • 0 comments

$ stack exec lisper
λ (define (range a b) (if (> a b) '() (cons a (range (+ a 1) b)))) <λ> λ (range 1 8) Undefined primitive function "range"

ezksd avatar Oct 23 '18 15:10 ezksd