Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - LoveVirus

#1
Anything else we might add? / Re: Indent version lisp
August 04, 2014, 10:08:01 PM
Ha ha, very glad you approve of my idea!
#2
Anything else we might add? / Indent version lisp
August 04, 2014, 06:34:29 PM
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:
[attachment=0]QQ截图20140805125316.png[/attachment]
In this way, both for the convenience of reading, but also reduces the number of characters,
#3
Anything else we might add? / Re: a bug?
December 14, 2013, 05:55:13 AM
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">http://www.newlisp.org/index.cgi?page=D ... ther_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 inappropriate in concept newlisp

2 In fact, I do not agree with nil said false, preferably with separate true and false, false estimates with nil to indicate which language is to learn c 0 => false practice it

3 I have an idea, is it possible to do a mini lisp kernel, the kernel which includes only a few elements of the basic axioms of lisp, the other by the library to achieve, the kernel should be stable not easily change , and the library can be updated frequently



Of course, I was a junior lisp enthusiasts, some ideas may be more naive, but still hope you can give some advice to see these ideas feasible.



Note: This is my google automatic translation, grammar and some may question, but this is the general meaning
#4
Anything else we might add? / a bug?
December 13, 2013, 05:37:38 AM
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!