hello world project

This commit is contained in:
2021-12-30 20:34:36 +01:00
parent c7bee051a5
commit abe8ee6c91
4 changed files with 31 additions and 0 deletions

7
1-hello-world/hello.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Printf("hello, world\n")
}