Changes between Version 1 and Version 2 of CommandLine
- Timestamp:
- 08/08/09 13:16:55 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CommandLine
v1 v2 1 1 == Command Line == 2 2 3 Quick examples: 4 {{{ 5 # compile and run immediately (if no errors) 6 cobra myprog.cobra 7 8 # get help 9 cobra -h 10 11 # compile only 12 cobra -c myprog.cobra 13 14 # with debug 15 cobra -d -c myprog.cobra 16 17 # multiple source files 18 cobra -c foo.cobra bar.cobra 19 20 # passing arguments 21 cobra foo.cobra bar.cobra -- arg1 arg2 22 23 # disable all checks, contracts, asserts, etc. 24 # maximum performance 25 cobra -turbo foo.cobra 26 }}} 27 28 Getting help: 3 29 {{{ 4 30 cobra -h