Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bf07988

Browse files
Added files for Chapter 2 fg
1 parent 5bab903 commit bf07988

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

Part_1_Hello_World/go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module hello_world
2+
3+
go 1.17

Part_1_Hello_World/main.exe

1.84 MB
Binary file not shown.

Part_1_Hello_World/main.exe.i64

18.8 MB
Binary file not shown.

Part_1_Hello_World/main.go

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// go mod init hello_world
2+
// go mod tidy
3+
// go build main.go
4+
5+
package main
6+
7+
import "fmt"
8+
9+
func main() {
10+
fmt.Println("Hello World!")
11+
}

0 commit comments

Comments
 (0)