aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/exercises/variables1.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/exercises/variables1.go b/src/exercises/variables1.go
deleted file mode 100644
index d527727..0000000
--- a/src/exercises/variables1.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// variables1.go
-// Make me compile!
-
-// I AM NOT DONE
-package main
-
-import "fmt"
-
-func main() {
- x = 5
- fmt.Println("x has the value %i", x)
-}