exercism / fsharp

Exercism exercises in F#.
https://exercism.org/tracks/fsharp
MIT License
108 stars 100 forks source link

Implement new Concept Exercise: tuples #863

Open ErikSchierboom opened 4 years ago

ErikSchierboom commented 4 years ago

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

Concepts

The Concepts this exercise unlocks are:

Prerequisites

This exercise's prerequisites Concepts are:

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.

Grenkin1988 commented 3 years ago

I'd like to try. Do we need to migrate from previous, or write from scratch?

ErikSchierboom commented 3 years ago

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?

ErikSchierboom commented 3 years ago

Oh and thanks for wanting to work on this!