mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 23:28:02 +00:00
Add missing code block language
This commit is contained in:
@@ -12,7 +12,7 @@ module StringMap = Map.Make(String);
|
|||||||
We can then use that module to to create an empty map followed by adding
|
We can then use that module to to create an empty map followed by adding
|
||||||
key-value pairs to it.
|
key-value pairs to it.
|
||||||
|
|
||||||
```
|
```reason
|
||||||
StringMap.empty
|
StringMap.empty
|
||||||
|> StringMap.add("Morty", "Smith")
|
|> StringMap.add("Morty", "Smith")
|
||||||
|> StringMap.add("Rick", "Sanchez")
|
|> StringMap.add("Rick", "Sanchez")
|
||||||
|
|||||||
Reference in New Issue
Block a user