[CM] Lisp Question

Tobias Kunze Briseņo t@fictive.com
Wed, 7 May 2003 23:36:23 +0200


> clisp myScoreGenerator.cm someFileName

man clisp.  e.g., with file

  --- foo.lisp ------------------------------
  (format t "*** args: ~{~s ~}" *args*)
  -------------------------------------------

call

  % clisp foo.lisp  1 2 3 "foobar"
  *** args: "1" "2" "3" "foobar"

similarly, just pass in your file name and make your generator
output to it.