From 79c7aa30df4730cc9ae56e8eb526c6246fdeb0a0 Mon Sep 17 00:00:00 2001 From: dzaima Date: Mon, 16 Jan 2023 23:32:52 +0200 Subject: [PATCH] reformat --help --- src/main.c | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/main.c b/src/main.c index 7b6e8aee..70b245f0 100644 --- a/src/main.c +++ b/src/main.c @@ -775,15 +775,16 @@ int main(int argc, char* argv[]) { printf( "Usage: %s [options] [file.bqn [arguments]]\n" "Options:\n" - "-f file: execute the contents of the file with all further arguments as •args\n" - "-e code: execute the argument as BQN\n" - "-p code: execute the argument as BQN and print its result pretty-printed\n" - "-o code: execute the argument as BQN and print its raw result\n" - "-M num : set maximum heap size to num megabytes\n" - "-r : start the REPL after executing all arguments\n" - "-s : start a silent REPL\n" + " -f file execute the contents of the file with all further arguments as •args\n" + " -e code execute the argument as BQN\n" + " -p code execute the argument as BQN and print its result pretty-printed\n" + " -o code execute the argument as BQN and print its raw result\n" + " -M num set maximum heap size to num megabytes\n" + " -r start the REPL after executing all arguments\n" + " -s start a silent REPL\n" + " --help show this help text\n" #if HAS_VERSION - "--version: display CBQN version information\n" + " --version display CBQN version information\n" #endif , argv[0]); exit(0);