more default docs.

This commit is contained in:
dfsek
2021-04-25 22:26:19 -07:00
parent 664995e6eb
commit 73ca08cb3d
4 changed files with 88 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
# Map
A map is a data structure that "maps" one type (keys) to another (values).
Examples:
* Mapping [Strings](./String) to [Strings](./String)
```yml
a: "thing"
b: "thing 2"
c: "thing 3"
```
* Mapping [Strings](./String) to [Integers](./Integer)
```yml
a: 1
b: 2
c: 3
```