This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
[Elixir] Implement new Concept Exercise: dynamic-dispatch
#2803
Labels
dynamic-dispatch
#2803
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 replace
rpn-calculator-output
as the exercise that teaches dynamic dispatch (https://elixir-lang.org/getting-started/typespecs-and-behaviours.html#dynamic-dispatch).rpn-calculator-output
should be modified to depend ondynamic-dispatch
instead of teaching it. Make sure to reuse part of that exercise's introduction.Learning objectives
apply
?Out of scope
?
Concepts
dynamic-dispatch
Prerequisites
Depends on the story.
Resources to refer to
https://elixir-lang.org/getting-started/typespecs-and-behaviours.html#dynamic-dispatch
Story
Look through existing stories (
/reference/stories/
) to find inspiration or an existing story that can work for this exercise, or come up with a totally original idea.Implementing
Since dynamic dispatch depends on the existence of a few modules with the same function, we might want to provide that in the boilerplate instead of having the student implement those too.
Help
If you have any questions while implementing the exercise, please post the questions as comments in this issue.
The text was updated successfully, but these errors were encountered: