Skip to content

Commit c1e9fe8

Browse files
committed
Day 9
1 parent 2eed1fd commit c1e9fe8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Days/day09.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### How Go works
44

5-
On [Day 9](day09.md) we walked through getting Go installed on your workstation and we then created our first Go application.
5+
On [Day 8](day08.md) we walked through getting Go installed on your workstation and we then created our first Go application.
66

77
In this section, we are going to take a deeper look into the code and understand a few more things about the Go language.
88

@@ -13,7 +13,7 @@ Programming languages that we commonly use such as Python, Java, Go and C++ are
1313

1414
![](Images/Day9_Go1.png)
1515

16-
From the above you can see what we did on Day 8 here, we created a simple Hello World main.go and we then used the command `go build main.go` to compile our executable.
16+
From the above you can see what we did on [Day 8](day08.md) here, we created a simple Hello World main.go and we then used the command `go build main.go` to compile our executable.
1717

1818
### What are packages?
1919
A package is a collection of source files in the same directory that are compiled together. We can simplify this further, a package is a bunch of .go files in the same directory. Remember our Hello folder from Day 8? If and when you get into more complex Go programs you might find that you have folder1 folder2 and folder3 containing different .go files that make up your program with multiple packages.

0 commit comments

Comments
 (0)