golang-examples/hello/hello.go

8 lines
78 B
Go
Raw Normal View History

2022-07-22 11:07:16 +00:00
package main
import "fmt"
func main() {
fmt.Println("Hello World!!!")
}