Description:
Discussion about LISP.
|
|
|
functional code in php
|
| |
Hi,
I have to do a work in php, but I would like to write functional code as much as possible. Anyone knows libraries/references where I can look for?
Thanks
ps I post here because perhaps some lisper has had my same problem and has tested various strategies.
|
|
sbcl freebsd source encoding
|
| |
Hi
I am trying sbcl on freebsd
It fails to load hunchentoot cause it fails with
* (asdf:oos 'asdf:load-op :hunchentoot)
debugger invoked on a LOAD-SYSTEM-DEFINITION-ERROR in thread
... Error while trying to load definition for system rfc2388 from pathname
/usr/home/antony/git/thirdpart y/rfc2388/rfc2388.asd:... more »
|
|
Solutions Manuals, Instructor Manuals, Test Banks collection 2012
|
| |
Hello,
We would like to inform you that we have updated our list with the
following new titles.
You can contact us directly at Student.p24(at)Hotmail(dot)com .
If the title you are looking for is not listed, do not hesitate to
contact us,
we will try to help.
==========
2011 Federal Taxation, 5th Edition 2011, Pratt.Kulsrud, Instructor... more »
|
|
Very Huge collection of Solutions Manuals & Test Banks
|
| |
Hello,
We would like to inform you that we have updated our list with the
following new titles.
You can contact us directly at Student.p24(at)Hotmail(dot)com .
If the title you are looking for is not listed, do not hesitate to
contact us,
we will try to help.
==========
2011 Federal Taxation, 5th Edition 2011, Pratt.Kulsrud, Instructor... more »
|
|
Symbol pollution non-issue.
|
| |
You know I was just thinking about this whole non-issue that seems to irk some
people that if you misspell some symbol in your REPL, it gets interned and then
stays there forever until you manually scrub it away. I know that Clojure
obsesses over this also: it has a way by which such symbols are treated as... more »
|
|
Compile file with specific optimization
|
| |
I would like to compile file with specific optimization settings.
More precisely, I would like to write a function
'compile-file-with-optimizatio n'. My first attempt is
(defun compile-file-with-optimization (file opts)
(proclaim opts)
(compile-file file))
However, I would like that after compiling the file optimization... more »
|
|
ACL - secntion 4.4 example
|
| |
Here is what ACL has created on function called "second-word" which returns 2nd word of a string. I have edited it to use variable p2 but that does not work. PROBLEM: Why p2 is undefined ?
(defun second-word (str)
(let ((p1 (+ 1 (position #\ str))))
(subseq str p1 (position #\ str :start p1))))... more »
|
|
|