Print a usage message.
(String s)
| 110 | |
| 111 | /** Print a usage message. */ |
| 112 | private static void usage(String s) { |
| 113 | p("Didn't understand \"" + s + "\"."); |
| 114 | p("Valid arguments are:"); |
| 115 | p("-version 100|110|120|130|140|150|160|170"); |
| 116 | System.exit(1); |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * Print a help message. |
no test coverage detected