help method

void help()

Prints out all cli commands

var argy = Argy(arguments: myArgs);
argy.help();

Implementation

void help() {
  var out = """Example usage:

  """;
  print(out);
}