Add testing exercise

This commit is contained in:
Nathan Stocks
2021-06-15 22:51:21 -06:00
parent eb78fe0eab
commit 61612a2050
4 changed files with 68 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
// - TooYoung - An dolphin is too young
// - LongName - The dolphin's name is too long and annoying to say
//
// As a reminder, here are the 5 Guidelines for creating an error type
// As a reminder, here are the 5 Guidelines for creating an error type:
// (1) Use an `enum` for your error type
// (2) Your error conditions should be enum variants grouped in as few enums as makes sense
// (3) Don't expose error types other than your own (you don't have to do anything for this one)