If you want to build something using a Raspberry Pi, you'll probably use resistors. For this exercise, you need to know two things about them:
To get around this problem, manufacturers print color-coded bands onto the resistors to denote their resistance values. Each band has a position and a numeric value.
The first 2 bands of a resistor have a simple encoding scheme: each color maps to a single number.
In this exercise you are going to create a helpful program so that you don't have to remember the values of the bands.
These colors are encoded as follows:
The goal of this exercise is to create a way:
Mnemonics map the colors to the numbers, that, when stored as an array, happen to map to their index in the array: Better Be Right Or Your Great Big Values Go Wrong.
More information on the color encoding of resistors can be found in the Electronic color code Wikipedia article.
In this exercise, you must define syntax for colors using the c* prefix, e.g., c*black.
This syntax should expand at compile time to each color's corresponding value as a Fin 10, according to the instructions.
In the same way, you must define syntax for an array of all color values using c*all.
This task will likely require you to use either notations or macros. You might want to check a reference.
Because new syntax is expanded at compile time, any test would fail to compile unless all the required syntax is defined. For this reason, instead of relying on traditional runtime tests, we check all values using theorems. If a theorem typechecks, you may consider it a passing test.
If you work locally or in Lean's online playground, you will get instant feedback on whether any theorem succeeds or fails, and why it fails, through Lean InfoView.
Sign up to Exercism to learn and master Lean with 100 exercises, and real human mentoring, all for free.