module completions { # Print newline, word, and byte counts for each file export extern wc [ ...INPUT: string # The input file to use --bytes(-c) # Print the byte counts --chars(-m) # Print the character counts --lines(-l) # Print the line counts --max-line-length(-L) # Print the maximum display width --words(-w) # Print the word counts --help(-h) # Print help --version(-V) # Print version ] } use completions *