// wj - Unified Windjammer CLI
//
// This is the unified CLI for Windjammer. Parsing lives in `wj_cli_args`; dispatch in `wj_cli_cmds`.
//
// Usage:
// wj new <name> Create a new project
// wj build <file> Build Windjammer project
// wj run <file> Compile and execute
// wj test Run tests
// wj fmt Format code
// wj lint Run linter
// wj check Type check without building
use Parser;
use Cli;