> * Josef Eschgfaeller asks:
> | What is the substitute for argv in Lisp?
Lars Marius Garshol <lar...@ifi.uio.no> writes:
> In CLISP the variable *args* holds the arguments in a list.
For ACL (Allegro Common Lisp) on Unix:
(sys:command-line-arguments)
which IIRC gets the entire command line, including the program name:
Unix> acl -- foo=bar 3 twenty '(1 22 3 )'
Lisp> (sys:command-line-arguments)
("/local/acl/acl5.0/lisp" "foo=bar" "3" "twenty" "(1 22 3 )")
--
Thomas A. Russ, USC/Information Sciences Institute t...@isi.edu