aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--exercises/arrays/arrays2/main.go (renamed from exercises/slices/slices2/main.go)2
-rw-r--r--info.toml14
2 files changed, 8 insertions, 8 deletions
diff --git a/exercises/slices/slices2/main.go b/exercises/arrays/arrays2/main.go
index 7ec586b..d24302b 100644
--- a/exercises/slices/slices2/main.go
+++ b/exercises/arrays/arrays2/main.go
@@ -1,4 +1,4 @@
-// slices2
+// arrays2
// Make me compile!
// I AM NOT DONE
diff --git a/info.toml b/info.toml
index 33647eb..8e3422c 100644
--- a/info.toml
+++ b/info.toml
@@ -143,6 +143,13 @@ hint = """
Arrays are zero-based indexing."""
[[exercises]]
+name = "arrays2"
+path = "exercises/arrays/arrays2/main.go"
+mode = "compile"
+hint = """
+Unlike languages like Python or Ruby, go does not let you have slices with mixed data types."""
+
+[[exercises]]
name = "slices1"
path = "exercises/slices/slices1/main.go"
mode = "compile"
@@ -154,11 +161,4 @@ name = "slices2"
path = "exercises/slices/slices2/main.go"
mode = "compile"
hint = """
-Unlike languages like Python or Ruby, go does not let you have slices with mixed data types."""
-
-[[exercises]]
-name = "slices3"
-path = "exercises/slices/slices3/main.go"
-mode = "compile"
-hint = """
Slices can be created from arrays and you can slice it with a range, with the [low:high] syntax."""