diff options
author | pommicket <pommicket@gmail.com> | 2025-09-25 23:36:05 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-25 23:36:40 -0400 |
commit | fa5db0d2f5cc19e578b74b3bb15f8bb9bc90b789 (patch) | |
tree | d6d33ac0170a05da616dd232b78db25a5194d308 /src/main.rs | |
parent | af6810f0cc4559470409f476252efa13c424ab82 (diff) |
Animalia
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 0fcc3d6..8ca45fb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -25,7 +25,8 @@ fn try_main() -> Result<(), Box<dyn Error>> { let mut args = std::env::args_os().skip(1); let command = args.next(); let no_command = "No command specified. Commands available: -- definitions"; +- definitions +- animalia"; let Some(command) = command else { return Err(no_command.into()); }; |