aboutsummaryrefslogtreecommitdiff
path: root/challenge-108/abigail/go/ch-1.go
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-108/abigail/go/ch-1.go')
-rw-r--r--challenge-108/abigail/go/ch-1.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/challenge-108/abigail/go/ch-1.go b/challenge-108/abigail/go/ch-1.go
new file mode 100644
index 0000000000..fb3673f5f3
--- /dev/null
+++ b/challenge-108/abigail/go/ch-1.go
@@ -0,0 +1,16 @@
+package main
+
+//
+// See ../README.md
+//
+
+//
+// Run as: go run ch-1.go
+//
+
+import "fmt"
+
+func main () {
+ x := 0
+ fmt . Printf ("%d\n", &x)
+}