Search found 47 matches

by Indecipherable
Sat Jul 30, 2011 2:43 am
Forum: Common Lisp
Topic: newbie at lisp - please help
Replies: 6
Views: 6693

Re: newbie at lisp - please help

What exactly is wrong with Clisp though?
by Indecipherable
Sun Jul 17, 2011 10:40 am
Forum: Common Lisp
Topic: Ide help for the confused
Replies: 16
Views: 30427

Re: Ide help for the confused

In LispIDE, when you go to settings=>lisp path, you navigate to your implementation and it will load it in the bottom window every time you start it.
by Indecipherable
Thu Jul 07, 2011 2:35 am
Forum: Common Lisp
Topic: XML Tools
Replies: 6
Views: 5827

Re: XML Tools

So do you think writing an AIML parser will be quite difficult?
by Indecipherable
Thu Jul 07, 2011 2:33 am
Forum: Common Lisp
Topic: Interfacing with command shell
Replies: 1
Views: 2673

Interfacing with command shell

Is there a library or perhaps a script that allows you to execute shell scripts? Something like Python's os.system() if you are familiar.
by Indecipherable
Sat Jul 02, 2011 7:00 am
Forum: Common Lisp
Topic: XML Tools
Replies: 6
Views: 5827

Re: XML Tools

Is there a good online tutorial explaining the basics of writing an interpreter for an XML-Based language (writing an XML parser(?)) ? :?:
by Indecipherable
Sat Jul 02, 2011 6:54 am
Forum: Common Lisp
Topic: partial paths
Replies: 7
Views: 6606

Re: partial paths

define would be defun, the parameters are in their own brackets after the name, then the body, then the final end-function brackets.
null? would be null, #t => t, eq? => eq or eql or equal, and I think #f means false(?) which would be nil in CL.
by Indecipherable
Sat Jul 02, 2011 6:49 am
Forum: Common Lisp
Topic: any function is there
Replies: 4
Views: 4782

Re: any function is there

Konfusius wrote:

Code: Select all

(apply #'< list)
Okay so obviously there are quite alot of ways :mrgreen:
by Indecipherable
Fri Jul 01, 2011 2:06 pm
Forum: Common Lisp
Topic: partial paths
Replies: 7
Views: 6606

Re: partial paths

I'm tired now, lol. May I also suggest the #lisp IRC channel? It is very useful for real-time responses\help.
by Indecipherable
Fri Jul 01, 2011 2:01 pm
Forum: Common Lisp
Topic: any function is there
Replies: 4
Views: 4782

Re: any function is there

Perhaps something like this? Lol, it is late by me so my code may seem a little messy today and everything :D Murali, I really get the feeling that you are needing this code and the previous for some assignment of some sort. You do not even post any code as a guide-line, which raises suspicion. :?: ...
by Indecipherable
Fri Jul 01, 2011 1:31 pm
Forum: Common Lisp
Topic: ascending-help me
Replies: 4
Views: 5079

Re: ascending-help me

Something like this? ;;; Returns a string and 'T' if the list is in a desc. or asc. order, and NIL otherwise (defun ordered (list) (let ((list-dec (copy-list list))) (let ((list-inc (copy-list list))) (let ((alist (sort list-inc #'<))) (let ((dlist (sort list-dec #'>))) (cond ((equal list dlist) (fo...