Forum: Computer Science Mar 22nd, 2007 |
| Replies: 5 Views: 6,372 When referring to file paths in Common LISP, it's best to either use the pathname directive:
(load #p("/path/to/file")
-or-
...better yet, just use the arbitrary pathname tricks in Common LISP:
... |
Forum: Computer Science Jan 22nd, 2007 |
| Replies: 11 Views: 7,151 From the way I was tought things, function programming is synonymous with procedural programming.
As for the "complexities" of operator overloading and pre-processor commands, I consider those... |
Forum: Computer Science Jan 22nd, 2007 |
| Replies: 11 Views: 7,151 @ TylerSBrenton: If (s)he asked, you should at least have the common curtosey to provide an answer that isn't a google result.
@ sosina abraha:
There are two branches of programming: functional,... |
Forum: Computer Science Jan 22nd, 2007 |
| Replies: 5 Views: 8,667 And which programming language? |
Forum: Computer Science Jan 22nd, 2007 |
| Replies: 18 Views: 5,161 Watch out with variable names...especially in this situation: CAR is a function in Lisp, so I would name the variable *cars* instead.
It's also not working, because you haven't defined the symbols... |