Skip to content

Commit ba96396

Browse files
authored
resistor-color: Mark exercise as foregone (#888)
resistor-color-duo was added in #808. resistor-color-trio was added in #869. Yet there is no resistor-color. I argue that there shouldn't be. A reasonable solution might look like ```haskell data Color = ... deriving (Eq, Enum, Bounded) colorCode :: Color -> Int colorCode = fromEnum colors :: [Color] colors = [minBound..] ``` which makes it approximately as simple as the gigasecond exercise which was marked as deprecated in #280 (decision made in #230). Still, if it is simply missing, it will appear as an exercise that is potentially implementable on https://tracks.exercism.io/haskell/master/unimplemented Since a question was raised about this exercise once, marking it as foregone will limit further requests made in vain.
1 parent 10bea17 commit ba96396

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

config.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
"blurb": "Haskell is a functional programming language which is pure and statically-typed. It's known for lazy evaluation, where evaluation is deferred until necessary, and its purity, where monads are used for working with side-effects.",
55
"ignore_pattern": "example",
66
"solution_pattern": "example.*[.]hs",
7+
"foregone": [
8+
"resistor-color"
9+
],
710
"exercises": [
811
{
912
"slug": "hello-world",

0 commit comments

Comments
 (0)