aboutsummaryrefslogtreecommitdiffstats
path: root/info.toml
diff options
context:
space:
mode:
authorMaurĂ­cio Antunes <mauricio.abreua@gmail.com>2022-11-21 10:06:25 -0300
committerMaurĂ­cio Antunes <mauricio.abreua@gmail.com>2022-11-21 10:06:25 -0300
commit2bde005f6a8dc5e5326f04d1d6fb8598ddd845ee (patch)
treeee063cbb827b43cf40c08459864e6a3cab8a6030 /info.toml
parent7f67d60b889c80cff69028ee44b9717129ecf938 (diff)
feat: add one more slice exercise
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml7
1 files changed, 7 insertions, 0 deletions
diff --git a/info.toml b/info.toml
index 3ce9023..715ac39 100644
--- a/info.toml
+++ b/info.toml
@@ -148,3 +148,10 @@ path = "exercises/slices/slices1/main.go"
mode = "compile"
hint = """
Slices can be created with the make function and they must have a type."""
+
+[[exercises]]
+name = "slices2"
+path = "exercises/slices/slices2/main.go"
+mode = "compile"
+hint = """
+Slices can be created from arrays and you can slice it with a range, with the [low:high] syntax."""