about:command-line-options
Kiezellisp has the following command line:
kiezellisp-gui file [user-args]
kiezellisp-con [options] [file [user-args]]
con options are:
--repl Show REPL after running `file`.
file is the name of the kiezellisp source file to run and
user-args are arguments to the source code file.
Starting kiezellisp-con without a file implies repl.
Starting kiezellisp-con with a file implies no repl.
These defaults may be changed by supplying options.
If file is not given, kiezellisp-con runs a REPL.
kiezellisp-con
If file is given, kiezellisp-con runs in release mode, loads file,
calls the function user::main when defined and finally calls
the function exit.
kiezellisp-con my-app
When developing a winforms application:
mono kiezellisp-con.exe my-win-app
When running a winforms application:
mono kiezellisp-gui.exe my-win-app
Add the --repl option to not terminate after running file.
kiezellisp-con --repl my-app