Init commit

This commit is contained in:
Archie Fox
2024-12-02 12:32:31 +03:00
parent 61976c9a29
commit 2e7b8722ca
6 changed files with 119 additions and 0 deletions

BIN
chapter1/hello Executable file

Binary file not shown.

7
chapter1/hello.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, Go!")
}