You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Lisphp
I try write this in repl-mode
(define (test i)
(+ i i))
... and ...
PHP Fatal error: Nesting level too deep - recursive dependency? in /
home/vitalykatorgin/lisphp/lis.php on line 108
홍민희
unread,
Jul 11, 2010, 11:20:12 AM7/11/10
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to lis...@googlegroups.com
Thanks for your bug report. This is a REPL's value representation problem. There's an ad hoc solution for the problem: avoid representing the created function using a meaningless `do` form equivalent to Scheme's `begin`.
>>> (do (define (test i) (+ i i)) nil) ==> NULL >>> (test 5) ==> 10