summary refs log blame commit diff stats
path: root/tests/accept/compile/tparsopt.nim
blob: 2b2da7e5184c2c570ed89e0e5f637b33ab72f1af (plain) (tree)


























                                                                      
# Test the new parseopt module

import
  parseopt

proc writeHelp() = 
  writeln(stdout, "Usage: tparsopt [options] filename [options]")

proc writeVersion() = 
  writeln(stdout, "Version: 1.0.0")
  
var
  filename = ""
for kind, key, val in getopt():
  case kind
  of cmdArgument: 
    filename = key
  of cmdLongOption, cmdShortOption:
    case key
    of "help", "h": writeHelp()
    of "version", "v": writeVersion()
    else: 
      writeln(stdout, "Unknown command line option: ", key, ": ", val)
  of cmdEnd: assert(false) # cannot happen
if filename == "":
  # no filename has been given, so we show the help:
  writeHelp()