aashishsatya/PyScheme

Bug in the code

Opened this issue · 1 comments

Try this out :
(define (dup fn a)
(fn a a))

(dup + 1)

The answer should be 2
But your interpreter gives out an error message
Correct the bug if possible

Noted. I will try to fix the bug as soon as possible. Thanks!

On Sat, 8 Aug 2015 at 16:59 Akhil s notifications@github.com wrote:

Try this out :
(define (dup fn a)
(fn a a))

(dup + 1)

The answer should be 2
But your interpreter gives out an error message
Correct the bug if possible


Reply to this email directly or view it on GitHub
#1.