I\'d like to be able to access CLISP\'s argv fro开发者_运维百科m Lisp.It seems that there is either ext:argv or ext:*args*, depending on your needs (from the implementation notes).
I have a basic clisp function that I am making that just returns the number of atoms in a list.The issue I am having is I need it to increment for atoms in a list that is in the list, instead of seein
I use clisp 2.48 (2009-07-28) on Mac OS X 10.6.4.开发者_开发问答 I downloaded the clisp with \'sudo port install clisp\'.
Am able to load and call the functions but I would like to reload the file after making some corrections.
I am working with a reasonably large dataset in GNU clisp. It would be really nice if I could turn off the P of the REPL. Having thousands of results spew across my screen really isn\'t very useful.
I\'m trying to create a \"system\" command for clisp that works like this (setq result (system \"pwd\"))
Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing
for example: (3x2 - 5x + 2)(7x + 1) 开发者_如何学JAVAand you simplify it like this: ((3 2)(-5 1)(2 0))((7 1)(1 0))
I have (setq l2 \'(1 (2 b (c 1 b))(a (1 2) d))) (defun drumuri (l3) (cond ((atom l3) (cons l3 nil)) (t (append
Long story: I am doing a project for my functional programing class, and I thought of writing an AI controller in Lisp, for the Mario AI competition.