From 1cbf6396ec5a3665fb582009b9d43a1092f00228 Mon Sep 17 00:00:00 2001 From: Simon Shine Date: Wed, 3 Feb 2021 08:07:21 +0100 Subject: [PATCH] README "Port or create an exercise": Mention concept exercises This commit mentions that there are now two types of exercises. This section contains two broken links: - The "Unimplemented exercises" tool that we link to has been repurposed into testing whether a track is in compliance with Exercism v3. That means we no longer have an online cross-reference tool to get a list of unimplemented exercises. This link is replaced by a statement to manually cross-reference. This is not ideal, but it is possible. - "documentation on porting an exercise" now gives a 404. This link is just removed. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b946a88ac..be4559736 100644 --- a/README.md +++ b/README.md @@ -43,12 +43,12 @@ If you have a dedicated opinion you are welcome to [write a comment](https://hel Please be detailed and include reasons, links or arguments to support your opinion. ### Port or create an exercise -Exercism contains exercises that are not ported to Haskell: -- [Unimplemented exercises](https://tracks.exercism.io/haskell/master/unimplemented) +Exercism contains two types of exercises: concept exercises, and practice exercises. -You may implement any of these exercises for the Haskell track. Feel free to refer to the [documentation on porting an exercise](https://github.com/exercism/docs/blob/master/you-can-help/implement-an-exercise-from-specification.md). -Of course you can also add a totally new exercise, but it might be a good idea to [first discuss the idea](https://github.com/exercism/haskell/issues/new). +Haskell does not currently have any concept exercises. You can read about [concept exercises][reference/implementing-a-concept-exercise.md] and take part in creating Haskell's first ones. + +You can get a full list of [common Exercism practice exercises](https://github.com/exercism/problem-specifications/tree/main/exercises) and cross-reference it with [Haskell practice exercises](https://github.com/exercism/haskell/tree/main/exercises/practice) and implement any of the missing ones for the Haskell track. ### Update an exercise test suite Most unit tests are shared between language tracks. You may update a test suite with new unit tests.