dmitri.shuralyov.com/scratch/...

Add hello command.

This is the first Go package that doesn't map 1:1 to a repository.
It's a subdirectory inside a repository. Support for that is not
implemented yet. This package will be used to help with that.
dmitshur committed 6 years ago commit 53695465092ba1ca14b0dfdc521f44625d6dce81
Collapse all
hello/hello.go
@@ -0,0 +1,7 @@
package main

import "fmt"

func main() {
	fmt.Println("Hello, world.")
}