const HELP: &str = r#"sl-compiler - Simple Lisp Compiler
Run sl-compiler.
USAGE:
sl-compiler [FLAGS] [OPTIONS] [args]
FLAGS:
-v, --version Print the version, platform and revision of sl-compiler then exit.
-h, --help Print help (this) and exit.
OPTIONS:
-r, --run Compile and run the script.
-d, --dump Compile and dump the bytecode for the script.
-g1, --global_pre Compile and dump the globals before running.
-g2, --global_post Compile and dump the globals before running.
ARGS:
<args>... Script to run with arguments."#;