Add 'heyo.go'

This commit is contained in:
Sarimoko 2021-07-08 03:36:10 +00:00
parent bd77bee1a7
commit dfe8b0f574
1 changed files with 6 additions and 0 deletions

6
heyo.go Normal file
View File

@ -0,0 +1,6 @@
// Hello world in Go
package main
import "fmt"
func main() {
fmt.Printf("Hello World\n")
}