tracks/ocaml/exercises/etl/README.md in trackler-2.2.1.99 vs tracks/ocaml/exercises/etl/README.md in trackler-2.2.1.100
- old
+ new
@@ -1,18 +1,20 @@
-# Etl
+# ETL
We are going to do the `Transform` step of an Extract-Transform-Load.
### ETL
+
Extract-Transform-Load (ETL) is a fancy way of saying, "We have some crufty, legacy data over in this system, and now we need it in this shiny new system over here, so
we're going to migrate this."
(Typically, this is followed by, "We're only going to need to run this
once." That's then typically followed by much forehead slapping and
moaning about how stupid we could possibly be.)
### The goal
+
We're going to extract some scrabble scores from a legacy system.
The old system stored a list of letters per score:
- 1 point: "A", "E", "I", "O", "U", "L", "N", "R", "S", "T",
@@ -41,10 +43,9 @@
A final note about scoring, Scrabble is played around the world in a
variety of languages, each with its own unique scoring table. For
example, an "E" is scored at 2 in the Māori-language version of the
game while being scored at 4 in the Hawaiian-language version.
-
## Getting Started
For installation and learning resources, refer to the
[exercism help page](http://exercism.io/languages/ocaml).