Variables from command line in Common Lisp

0

How can I read variables from the command line in Common Lisp? I need to be able to enter two variables in this way:

C> clisp miScript.lisp "datos.txt" "salida.txt"

I currently have these variables in my script:

(setf rutaEntrada "datos.txt")
(setf rutaSalida "salidaLisp.txt")
    
asked by Marcos Rivas 12.10.2018 в 03:52
source

0 answers