Prerequisite
Install cairo-run.
Match Control Flow
Cairo provides us with a powerful control flow operator called match, which allows us to compare a value against a series of patterns and execute corresponding code based on the matching pattern. Patterns can consist of literals, variables, wildcards, and many other elements.
Let&