Search found 3 matches

by cos
Sat Sep 15, 2012 4:58 pm
Forum: Common Lisp
Topic: First Hunchentoot "Hello World!" page not found
Replies: 1
Views: 4949

Re: First Hunchentoot "Hello World!" page not found

And the answer is add "easy":

Code: Select all

(start (make-instance 'easy-acceptor :port 8080))
Thanks,
COS
by cos
Sat Sep 15, 2012 3:33 pm
Forum: Common Lisp
Topic: First Hunchentoot "Hello World!" page not found
Replies: 1
Views: 4949

First Hunchentoot "Hello World!" page not found

New to Lisp. Setup is Linux & SBCL. Hunchentoot installed and runs with NginX in front of it. I can run and access the Hunchentoot test site. Now I'm trying to create pages. Complex ones did not work, so I'm down to the simplest page I can find as an example: (ql:quickload "hunchentoot"...
by cos
Mon Aug 20, 2012 3:25 pm
Forum: Homework
Topic: first, rest, second, last
Replies: 3
Views: 12664

first, rest, second, last

Not really homework. But it is pretty basic, so I thought this forum was the best. I'm brand new to Lisp and am working through the online tutorial: http://art2.ph-freiburg.de/Lisp-Course Why does first return NIL and rest return (NIL)? (first '(() ())) NIL (rest '(() ())) (NIL) Why does first retur...