From 6757807170fe81113b773e0798810b50d7ca6dfa Mon Sep 17 00:00:00 2001 From: fwong07 <32751115+fwong07@users.noreply.github.com> Date: Thu, 14 May 2020 11:06:32 -0400 Subject: [PATCH 1/8] first commit --- 01_getting-started/01_helloWorld/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/01_getting-started/01_helloWorld/main.go b/01_getting-started/01_helloWorld/main.go index 70a7fe5d..2ebefef5 100644 --- a/01_getting-started/01_helloWorld/main.go +++ b/01_getting-started/01_helloWorld/main.go @@ -4,4 +4,6 @@ import "fmt" func main() { fmt.Println("Hello world!") + fmt.Println("Updated") } + From a0912a9987b3c424837ff95eacecea96af642e85 Mon Sep 17 00:00:00 2001 From: fwong07 <32751115+fwong07@users.noreply.github.com> Date: Thu, 14 May 2020 11:23:15 -0400 Subject: [PATCH 2/8] add test file --- 01_getting-started/01_helloWorld/test.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 01_getting-started/01_helloWorld/test.txt diff --git a/01_getting-started/01_helloWorld/test.txt b/01_getting-started/01_helloWorld/test.txt new file mode 100644 index 00000000..9daeafb9 --- /dev/null +++ b/01_getting-started/01_helloWorld/test.txt @@ -0,0 +1 @@ +test From 6171304e7e4755b7572d494e10adf9050e04bfdb Mon Sep 17 00:00:00 2001 From: fwong07 <32751115+fwong07@users.noreply.github.com> Date: Thu, 14 May 2020 11:36:45 -0400 Subject: [PATCH 3/8] Delete test.txt --- 01_getting-started/01_helloWorld/test.txt | 1 - 1 file changed, 1 deletion(-) delete mode 100644 01_getting-started/01_helloWorld/test.txt diff --git a/01_getting-started/01_helloWorld/test.txt b/01_getting-started/01_helloWorld/test.txt deleted file mode 100644 index 9daeafb9..00000000 --- a/01_getting-started/01_helloWorld/test.txt +++ /dev/null @@ -1 +0,0 @@ -test From 555effc8c0df52409b8e95440737b0def01f732b Mon Sep 17 00:00:00 2001 From: fwong07 <32751115+fwong07@users.noreply.github.com> Date: Thu, 14 May 2020 11:39:45 -0400 Subject: [PATCH 4/8] Add another test file --- 01_getting-started/01_helloWorld/Wonder.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 01_getting-started/01_helloWorld/Wonder.txt diff --git a/01_getting-started/01_helloWorld/Wonder.txt b/01_getting-started/01_helloWorld/Wonder.txt new file mode 100644 index 00000000..2b2cabc7 --- /dev/null +++ b/01_getting-started/01_helloWorld/Wonder.txt @@ -0,0 +1 @@ +Wonderful From ea009661258ea4313d5ff3a203a48945a66b5bd1 Mon Sep 17 00:00:00 2001 From: fwong07 <32751115+fwong07@users.noreply.github.com> Date: Thu, 14 May 2020 14:19:58 -0400 Subject: [PATCH 5/8] Played with formatting --- 01_getting-started/02_numeral-systems/03_hexadecimal/main.go | 2 +- 01_getting-started/03_UTF-8/main.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/01_getting-started/02_numeral-systems/03_hexadecimal/main.go b/01_getting-started/02_numeral-systems/03_hexadecimal/main.go index 21a8e0fb..45b5ab47 100644 --- a/01_getting-started/02_numeral-systems/03_hexadecimal/main.go +++ b/01_getting-started/02_numeral-systems/03_hexadecimal/main.go @@ -6,5 +6,5 @@ func main() { // fmt.Printf("%d - %b - %x \n", 42, 42, 42) // fmt.Printf("%d - %b - %#x \n", 42, 42, 42) // fmt.Printf("%d - %b - %#X \n", 42, 42, 42) - fmt.Printf("%d \t %b \t %#X \n", 42, 42, 42) + fmt.Printf("%d \n %b \n %#X \n", 42, 42, 42) } diff --git a/01_getting-started/03_UTF-8/main.go b/01_getting-started/03_UTF-8/main.go index 65360442..737b6468 100644 --- a/01_getting-started/03_UTF-8/main.go +++ b/01_getting-started/03_UTF-8/main.go @@ -3,7 +3,7 @@ package main import "fmt" func main() { - for i := 60; i < 122; i++ { - fmt.Printf("%d \t %b \t %x \t %q \n", i, i, i, i) + for i := 60; i < 170; i++ { + fmt.Printf("%d \t %b \t %#X \t %q \n", i, i, i, i) } } From 2a2974418e64d1fce6e00c0063a94677fa457d77 Mon Sep 17 00:00:00 2001 From: fwong07 <32751115+fwong07@users.noreply.github.com> Date: Mon, 12 Oct 2020 17:47:01 -0400 Subject: [PATCH 6/8] Create test.go --- 01_getting-started/01_helloWorld/test.go | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 01_getting-started/01_helloWorld/test.go diff --git a/01_getting-started/01_helloWorld/test.go b/01_getting-started/01_helloWorld/test.go new file mode 100644 index 00000000..e69de29b From de5bea2546d5a3b092741ff3046196640973943e Mon Sep 17 00:00:00 2001 From: fwong07 <32751115+fwong07@users.noreply.github.com> Date: Mon, 12 Oct 2020 17:50:39 -0400 Subject: [PATCH 7/8] Update test.go --- 01_getting-started/01_helloWorld/test.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/01_getting-started/01_helloWorld/test.go b/01_getting-started/01_helloWorld/test.go index e69de29b..7bd5f565 100644 --- a/01_getting-started/01_helloWorld/test.go +++ b/01_getting-started/01_helloWorld/test.go @@ -0,0 +1,8 @@ +package main + +import "fmt" + +func test() { + fmt.Println("Hello world!") + fmt.Println("Updated") +} From 9511ac6b422964f6f917ff090c319db1717387ac Mon Sep 17 00:00:00 2001 From: fwong07 <32751115+fwong07@users.noreply.github.com> Date: Mon, 12 Oct 2020 17:52:14 -0400 Subject: [PATCH 8/8] Delete test.go --- 01_getting-started/01_helloWorld/test.go | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 01_getting-started/01_helloWorld/test.go diff --git a/01_getting-started/01_helloWorld/test.go b/01_getting-started/01_helloWorld/test.go deleted file mode 100644 index 7bd5f565..00000000 --- a/01_getting-started/01_helloWorld/test.go +++ /dev/null @@ -1,8 +0,0 @@ -package main - -import "fmt" - -func test() { - fmt.Println("Hello world!") - fmt.Println("Updated") -}