`default("help")`でデフォルトコマンドを`help`とし、明示的に`help`コマンドを登録する。 ```ts import { Command, HelpCommand } from "cliffy"; if (import.meta.main) { await new Command() .default("help") .command("help", new HelpCommand()) .parse(Deno.args); } ```