Possible Duplicate:
Is Haskell a Lisp?
许多在Lisp工作的人告诉我,Haskell是Lisp的方言之一。 我在互联网上搜寻,但找不到适当的答案。 有些人能够就此作出解释?
Possible Duplicate:
Is Haskell a Lisp?
许多在Lisp工作的人告诉我,Haskell是Lisp的方言之一。 我在互联网上搜寻,但找不到适当的答案。 有些人能够就此作出解释?
No, it isn t. See: http://www.haskell.org/haskellwiki/History_of_Haskell
他们再次提及利普拉斯富美术和多维能力,这些能力允许使用各种方案风格,这也可能导致把所有其他语文仅仅视为利普拉特的特殊情况。 Lisp家庭语言的一些实施,如,Racket计划的实施也包含在Haskell的特征,如固定类型、配对模式或zy评价。
铭记
无论谁不懂LISP,都注定要重新发明。
Long story: I am doing a project for my functional programing class, and I thought of writing an AI controller in Lisp, for the Mario AI competition. I was looking over frameworks/libraries/ways of ...
I use emacs via Putty and since Putty doesn t send certain key combinations to the remote console I generally need to re-bind them to other key combinations. After installing the amazing Zen-Coding ...
I develop in Lisp and in Scheme, but I was reading about Clojure and then I want to know, in which cases is better to use it than using Lisp or Scheme? Thanks
If I have a list of 0 s, how would I modify, for example, the 16th 0 in the list?
I was trying to write my own put-pixel on (Gdk) pixbuf in Lisp. When I finally realized how I can operate on C pointers in CL, new obstacle came along - (gdk:pixbuf-get-pixels pb) returns me negative ...
I have created some of my own user packages and have run into a name clash. In Java, the naming convention is to use your domain name in the package name: e.g. import com.example.somepackage;. Are ...
We have built a webservice for a client that uses AutoCAD. They have a macro that runs in AutoCAD that builds a SOAP request. But they have not figured out how to actually send() the soap request to ...
In Chapter 9 of the Little Schemer, the Author presents the following two functions (define Q (lambda (str n) (cond ((zero? (remainder (first$ str ) n)) (Q (second$ str ) n)) ...