This directory contains examples of how to use the cliq library.
You can compile all the examples using:
$ make examples
Executables will be placed in the examples/bin
directory.
Demonstrates how to create a simple CLI application with custom commands.
$ ./bin/simple help
testarg This is a test argument
ver Display version information
help Display CLI information
$ ./bin/simple
No arguments found!
$ ./bin/simple ver
You really thought I'll version examples?!
$ ./bin/simple testarg ver
Test Argument Found!