aboutsummaryrefslogtreecommitdiffstats
path: root/info.toml
diff options
context:
space:
mode:
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"""