This commit is contained in:
GO 2021-09-03 08:58:05 +00:00
parent 5134a04e9d
commit 354983d93f
2 changed files with 10 additions and 0 deletions

3
hello/go.mod Normal file
View File

@ -0,0 +1,3 @@
module c.infdj.com/GO/courses_golang/hello
go 1.17

7
hello/hello.go Normal file
View File

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