diff options
author | pommicket <pommicket@gmail.com> | 2025-09-25 21:51:14 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-25 21:51:14 -0400 |
commit | af6810f0cc4559470409f476252efa13c424ab82 (patch) | |
tree | dd7b457b9f6cf63e10c7edd826c3494352afc1f5 /src/animalia.rs | |
parent | bb784f99cfcf17fd01bfd64e5add57bdd0d88673 (diff) |
Start animalia
Diffstat (limited to 'src/animalia.rs')
-rw-r--r-- | src/animalia.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/animalia.rs b/src/animalia.rs new file mode 100644 index 0000000..f3b3261 --- /dev/null +++ b/src/animalia.rs @@ -0,0 +1,9 @@ +use std::error::Error; + +pub fn main(args: Vec<String>) -> Result<(), Box<dyn Error>> { + if !args.is_empty() { + Err("No arguments expected to 'animalia' command")?; + } + + Ok(()) +} |