aboutsummaryrefslogtreecommitdiffstats
path: root/info.toml
diff options
context:
space:
mode:
authorMaurĂ­cio Antunes <mauricio.abreua@gmail.com>2022-11-28 11:24:17 -0300
committerMaurĂ­cio Antunes <mauricio.abreua@gmail.com>2022-11-28 11:24:17 -0300
commitdf05d6846a856ded638406bae0b863ade6413626 (patch)
treea323420b126761191256d97ca049b2c23d32cfad /info.toml
parent525d58dc41bf3d92427b53892a5b676c9ce00926 (diff)
feat: new map exercise
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml13
1 files changed, 13 insertions, 0 deletions
diff --git a/info.toml b/info.toml
index f8cffd7..582aab0 100644
--- a/info.toml
+++ b/info.toml
@@ -179,3 +179,16 @@ name = "slices4"
path = "exercises/slices/slices4/main.go"
mode = "test"
hint = "No hints this time"
+
+[[exercises]]
+name = "maps1"
+path = "exercises/maps/maps1/main.go"
+mode = "compile"
+hint = """
+Maps have types, for the key and the values.
+
+To make it compile you need to define types.
+
+Indexing is similar to setting values.
+
+Check the spec for more info: https://go.dev/ref/spec#Map_types"""