Search found 4 matches

by LoveVirus
Tue Aug 05, 2014 5:08 am
Forum: Anything else we might add?
Topic: Indent version lisp
Replies: 10
Views: 21588

Re: Indent version lisp

Ha ha, very glad you approve of my idea!
by LoveVirus
Tue Aug 05, 2014 1:34 am
Forum: Anything else we might add?
Topic: Indent version lisp
Replies: 10
Views: 21588

Indent version lisp

Many people complain that LISP braces too, because the formatted LISP code itself is a hierarchical structure, then we can learn about the format of the python, use indentation to indicate the level, remove the bracket. For example: QQ截图20140805125316.png In this way, both for the convenience of rea...
by LoveVirus
Sat Dec 14, 2013 1:55 pm
Forum: Anything else we might add?
Topic: a bug?
Replies: 3
Views: 5057

Re: a bug?

Lutz,Thanks for your help! I have some other questions,in this topic have some Differences to Other LISPs. http://www.newlisp.org/index.cgi?page=Differences_to_Other_LISPs But in my idea, 1.nil<=>(),(first '())=>(rest '())=>()=>nil,Rather than some of the results newlisp now, I feel somewhat inappro...
by LoveVirus
Fri Dec 13, 2013 1:37 pm
Forum: Anything else we might add?
Topic: a bug?
Replies: 3
Views: 5057

a bug?

I come from china,my english is poor,I like lisp,like newlisp too!But find some bug.
eg:
(define (fac n) (if (= n 1) 1 (* n (fac (- n 1)))))
(fac 30)
-8764578968847253504
This result is fault!