Search found 538 matches

by nuntius
Sun Feb 22, 2009 5:39 pm
Forum: Common Lisp
Topic: Some SBCL Windows binaries
Replies: 4
Views: 7694

Re: Some SBCL Windows binaries

Just a friendly reminder that SBCL still has a handful of known bugs on MSWin. Supposedly they aren't terribly hard to fix, and require no lisp knowledge. Just a willingness to learn some x86 assembly and MSWin internals.
by nuntius
Mon Feb 16, 2009 10:07 am
Forum: Common Lisp
Topic: sbcl on windows XP
Replies: 7
Views: 12611

Re: sbcl on windows XP

thanks nuntius, so do you think I should try getting in contact with Alastair Bridgewater? As for other implementations, my tutor suggested using Allegro CL for a windows OS. I'm unsure how to get it running though... If you have time to dig in and fix this, then Alistair would be happy to show you...
by nuntius
Sun Feb 15, 2009 7:00 pm
Forum: Common Lisp
Topic: sbcl on windows XP
Replies: 7
Views: 12611

Re: sbcl on windows XP

After it is built, SBCL does not need (or even use) an external C compiler. The word I have is that SBCL on MSWin is 90+% done. There's just a couple known (but significant) problems that prevent it from being fully usable. The original developer, Alastair Bridgewater, never used MSWin as his primar...
by nuntius
Sun Feb 15, 2009 6:46 pm
Forum: Common Lisp
Topic: Lispsnippets.org
Replies: 5
Views: 8654

Re: Lispsnippets.org

Q: How is this better/different than http://paste.lisp.org?
by nuntius
Wed Feb 04, 2009 6:04 pm
Forum: Common Lisp
Topic: Installing ASDF on CLISP-Win32?
Replies: 3
Views: 7906

Re: Installing ASDF on CLISP-Win32?

Do you need asdf-install or just asdf? If the latter, then drop all the asdf-install stuff from your rc file...
by nuntius
Tue Feb 03, 2009 8:45 am
Forum: Common Lisp
Topic: Google Maps
Replies: 0
Views: 6246

Google Maps

Some people have started registering their locations with Google Maps; feel free to join them. Common Lisp: http://maps.google.com/maps/ms?msa=0&msid=114830829398919898492.000461fa38297b8417186 Clojure: http://maps.google.com/maps/ms?msa=0&msid=112691912540601337884.00045972a1deb8de0d96b For...
by nuntius
Sun Feb 01, 2009 7:06 pm
Forum: Common Lisp
Topic: [Newbie] Help needed for basic problem
Replies: 8
Views: 11327

Re: [Newbie] Help needed for basic problem

Sorry; my first reply was botched; I wrote DO but used the syntax for DOLIST.

Here's a simple, non-broken example of DO iterating over a list.

Code: Select all

(let ((list (list 1 2 3)))
  (do ((x list (cdr x)))
      ((not x))
    (print (car x))))
by nuntius
Sat Jan 31, 2009 8:24 pm
Forum: Common Lisp
Topic: [Newbie] Help needed for basic problem
Replies: 8
Views: 11327

Re: [Newbie] Help needed for basic problem

(let ((min most-positive-fixnum))
(do (x list)
(when (> x min)
...)))
by nuntius
Sat Jan 31, 2009 1:22 am
Forum: Common Lisp
Topic: (load filename) vs sbcl filename?
Replies: 1
Views: 6880

Re: (load filename) vs sbcl filename?

You are calling SBCL with the wrong command line. Try "sbcl --load file" or "sbcl --script file" (newer sbcl only).

See the manual for more details.
http://www.sbcl.org/manual/Command-Line-Options.html