From 5344f0e3523744565eb832c49bffb94a76097018 Mon Sep 17 00:00:00 2001 From: Edward Date: Sun, 10 May 2020 22:23:05 +0800 Subject: [PATCH] merge init/pointer example to https://github.com/crazybber/go-fucking-exercise/tree/master/basic --- playground/init/main.go | 13 ------------- playground/pointer/pointer_test.go | 26 -------------------------- 2 files changed, 39 deletions(-) delete mode 100644 playground/init/main.go delete mode 100644 playground/pointer/pointer_test.go diff --git a/playground/init/main.go b/playground/init/main.go deleted file mode 100644 index c846a55..0000000 --- a/playground/init/main.go +++ /dev/null @@ -1,13 +0,0 @@ -package main - -import ( - "github.com/davecgh/go-spew/spew" -) - -func init() { - spew.Dump("inited") -} - -func main() { - spew.Dump("Test") -} diff --git a/playground/pointer/pointer_test.go b/playground/pointer/pointer_test.go deleted file mode 100644 index 53593ca..0000000 --- a/playground/pointer/pointer_test.go +++ /dev/null @@ -1,26 +0,0 @@ -package pointer - -import ( - "fmt" - "testing" -) - -func TestBasic(t *testing.T) { - answer := 42 - fmt.Println(&answer) // & is address operator - - address := &answer - fmt.Println(*address) // * is dereferencing, which providers the value that a memory address refers to. - fmt.Printf("address is a %T \n", address) // print the pointer type - - var address2 *int // declare a pointer - address2 = address // address2 can store some pinter type - fmt.Println(*address2) - -} - -func TestPointer(t *testing.T) { - var test *string = new(string) - *test = "123" - fmt.Println(test) -}