Wednesday, October 26, 2016

CLISP: Command-line Argument Parsing Example

Command:

$ cat command_line_args_parsing.lisp


Result:

(print *args*)


Command:

$ clisp command_line_args_parsing.lisp Hello World 123


Result:

("Hello" "World" "123")