|
This is the situation : I mostly program C# and have written types in it I don't want to lose. At the same time I would like to learn functional programming. The obvious answer of course is F#.
But for everything apart from C# I use emacs as an editor...
Started by Peter on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
But I think learning at least one functional OO and less functional, because that's where... .
The syntax and features are different from Lisp.
Is considered, with all its derivatives, to be an impure functional language) whereas Lisp is older.
|
|
I've been a UNIX sysadmin for a long time, and aside from automating tasks with shell scripting, some light PHP work, and a few simple C programs, I've never done much in the way of programming. I recently decided to stretch my mind a bit and learn Common...
Started by Geoff Fritz on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Those commands send the code to the ....
Did you try Lispbox ?
Well, a good place to start would be the executing lisp section of the info, and interact with an inferior process (a new process spawned by Emacs, in this case a lisp process.
|
|
I have read that most languages are becoming more and more like lisp, adopting features that lisp has had for a long time. I was wondering, what are the features, old or new, that lisp does not have? By lisp I mean the most common dialects like Common...
Started by bennybdbc on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Common Lisp made things easier for humans at the expense of making it harder for computers....
Common Lisp was created at a time when humans were considered cheap, and machines were considered expensive.
Been asked a million times, but here goes.
|
Ask your Facebook Friends
|
I'm trying to translate some Common Lisp code into Scheme code. The Common Lisp code has a deftype . Are deftype s in Scheme the same as deftype s in Common Lisp? How do you translate a deftype in Common Lisp into equivalent code in Scheme?
Started by Paul Reiners on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
These....
See CLHS:Type Specifiers for a description of what a type specifier can be in Common Lisp.
You will have to translate type Scheme equivalent to Common Lisp deftype .
Common Lisp deftype doesn't have an exact Scheme equivalent.
|
|
I know that this is subjective and all, but still, can you guys (and gals) provide some list of serious applications that were written in Lisp (perhaps along with what Lisp it is)?
Started by Bartosz RadaczyĆski on
, 20 posts
by 17 people.
Answer Snippets (Read the full thread at stackoverflow):
Orbitz.com ....
See here to understand why this is impressive.
ITA Software's airline-fare search service.
Another expect from a LISP window manager.
Emacs
(at least parts of it are written in Emacs Lisp)
I'm particularly fond of Maxima .
|
|
Is there a PEAR kind library for lisp? I hope there is, but I read somewhere that one of the disadvantages of lisp is its lack of serious libraries. I find that hard to believe since lisp is half a century old now.
Started by Peter on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Many are installable via....
Common-lisp.net hosts a lot of Lisp projects.
Mudballs is also worth a look.
As jlf said www.cliki.net is a good starting point manager for lisp libraries.
The Common Lisp Wiki is a good place to start.
|
|
Essentially, I would like to know what a Lisp image is? s it a slice of memory containing the Lisp interpreter and one or more programs or what?
Started by mac on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Then you have two options: (1) either load your lisp file everytime you invoke lisp or (2) load all your....
If your-lisp-implementation uses a image, than first you ( or the compiler vendor will ) boot strap an image, and save it.
|
|
I am looking for a mathematical book on Lisp. Some ideas?
Started by Masi on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Woollett Web Page....
Chaitin Maxima by Example by Edwin L.
Elegant LISP Programs by G.
Structure and Interpretation version of Lisp, but you'll learn the concepts.
Essentials of Programming Languages
John Allen's Anatomy of Lisp .
|
|
I really want to learn Scheme macros. I glanced over the content of "On Lisp" and a lot of the chapters have been devoted to Lisp macros. However I do not know common lisp. Can I use it to learn Scheme Macros?
Started by kunjaan on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Re: I dont....
Some implementations of Scheme offer Lisp macros in addition to Scheme macros, but this is not required an introduction to Scheme macros.
Scheme macros ("hygienic macros") are completely different from traditional Lisp macros.
|
|
I've read that Ruby has inherited many features from Lisp.
What features does Ruby have that likely have a Lisp heritage?
Started by banister on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This is a good read: http://www.randomhacks.net/articles/2005/12/03/why-ruby-is-an-acceptable-lisp.
|