aboutsummaryrefslogtreecommitdiffstats
path: root/exercises/slices/slices3
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/slices/slices3')
-rw-r--r--exercises/slices/slices3/main.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/exercises/slices/slices3/main.go b/exercises/slices/slices3/main.go
deleted file mode 100644
index 3864769..0000000
--- a/exercises/slices/slices3/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// slices3
-// Make me compile!
-
-// I AM NOT DONE
-package main
-
-import "fmt"
-
-func main() {
- names := [4]string{"John", "Maria", "Carl", "Peter"}
- lastTwoNames := names[] // after figuring out the answer, try with other low/high bounds
- fmt.Println(lastTwoNames)
-}