diff options
author | Clay Sweetser <clay.sweetser@gmail.com> | 2014-10-14 21:16:18 -0400 |
---|---|---|
committer | Clay Sweetser <clay.sweetser@gmail.com> | 2014-10-14 21:16:18 -0400 |
commit | 99b36cb71ec2b4b4468e8d1a170809445923d3c1 (patch) | |
tree | c4ee732164cab8d13471f08ee7c68fe904e1a168 /koch.nim | |
parent | 753733e9e2d2a48d9272fce09c47487429c9bd87 (diff) | |
download | Nim-99b36cb71ec2b4b4468e8d1a170809445923d3c1.tar.gz |
Allow koch.nim to be run without a failure if given no arguments.
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/koch.nim b/koch.nim index 3ea3475b9..bd3c9552b 100644 --- a/koch.nim +++ b/koch.nim @@ -329,7 +329,7 @@ proc temp(args: string) = proc showHelp() = quit(HelpText % [NimVersion & repeatChar(44-len(NimVersion)), - CompileDate, CompileTime]) + CompileDate, CompileTime], QuitSuccess) var op = initOptParser() op.next() |