SYNOPSYS
    kink [LaunchOptions]... [StandardOptions]...
        Executes the REPL (interactive shell).

    kink [LaunchOptions]... [StandardOptions]... [--] FILE [ARGS]...
        Executes a program read from the FILE.

    kink [LaunchOptions]... [StandardOptions]... [--] - [ARGS]...
        Executes a program read from the standard input.

    kink [LaunchOptions]... [StandardOptions]... -e CODE [--] [ARGS]...
        Executes the CODE as a program.

LAUNCH OPTIONS
    -Jxxx / -J xxx    Passes xxx to the JVM as an option (ex. -J-Xmx128M)
    -Cxxx / -C xxx    Adds xxx to the classpath (ex. -C ~/mine.jar)
    -Exxx / -E xxx    Uses xxx as the java executable (ex. -E /opt/jdk7/bin/java)
    -V                Turns on verbose mode, and set the log level to INFO
    -Vxxx             Turns on verbose mode, and set the log level to xxx
                      (ERROR, WARN, INFO, DEBUG, TRACE)

STANDARD OPTIONS
    -e CODE / --execute CODE    Executes the CODE as a program
    -h / --help                 Prints this help and exit
    -v / --version              Prints the version and exit
