learn-go-with-tests/hello.go

8 lines
73 B
Go
Raw Normal View History

2022-01-26 12:52:16 +00:00
package main
import "fmt"
func main() {
fmt.Println("Hello, world")
}