diff --git a/README.md b/README.md index c8e4649..29bc437 100644 --- a/README.md +++ b/README.md @@ -96,6 +96,7 @@ function main () { let binary = match(boolean, [ [false, () => 0], [true, () => 1], + [_, () => undefined], ]) console.log(`${boolean} -> ${binary}`);