wca 0.46.0

The tool to make CLI ( commands user interface ). It is able to aggregate external binary applications, as well as functions, which are written in your language.
1
2
3
4
5
6
7
8
9
10
11
12
mod private {}

crate ::mod_interface!
{
  /// User grammar settings.
  /// By using this module, you can define a new commands and provide a detailed descriptions of them.
  layer command;
  /// A dictionary is a collection of commands that can be easily looked up and used.
  layer dictionary;
  /// Available types for arguments.
  layer types;
}