Open ErikSchierboom opened 4 years ago
I'd like to try. Do we need to migrate from previous, or write from scratch?
You can try to port an existing exercise, which is often a bit easier to do. I've found three candidates:
Of these three, I think I like the Python one best. Maybe you could try porting that one?
Oh and thanks for wanting to work on this!
This issue describes how to implement the
tuples
concept exercise for the F# track.Getting started
Please please please read the docs before starting. Posting PRs without reading these docs will be a lot more frustrating for you during the review cycle, and exhaust Exercism's maintainers' time. So, before diving into the implementation, please read up on the following documents:
Please also watch the following video:
Goal
The goal of this exercise is to teach the student the basics of the Concept of Tuples in F#.
Learning objectives
Out of scope
struct
tuples.Concepts
The Concepts this exercise unlocks are:
tuples
: know what a tuple is; know when tuples should be used; know how to define tuples of different sizes; know that tuples have structural equality; know how to deconstruct tuples; know how to pattern match on tuples; know that tuples are immutable.Prerequisites
This exercise's prerequisites Concepts are:
pattern-matching
: know how to do pattern matching.basics
: know how to define bindings and functions.Any data types used in this exercise (e.g.
strings
) should also be added as prerequisites.Resources to refer to
Hints
After
Representer
This exercise does not require any specific representation logic to be added to the representer.
Analyzer
This exercise does not require any specific logic to be added to the analyzer.
Implementing
To implement this exercise, please follow these instructions.
Help
If you have any questions while implementing the exercise, please post the questions as comments in this issue.