jan tolenaar / kiezellisp / index-of-everything

Name

about:command-line-options

Description

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.

Example 1

If file is not given, kiezellisp-con runs a REPL.

kiezellisp-con

Example 2

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

Example 3

When developing a winforms application:

mono kiezellisp-con.exe my-win-app

Example 4

When running a winforms application:

mono kiezellisp-gui.exe my-win-app

Example 5

Add the --repl option to not terminate after running file.

kiezellisp-con --repl my-app