Hello, World!

by
Write a simple hello world starting with the test and working your way out.
File: greet_test.go
package learn import "testing" func TestGreet(t *testing.T) { var got string exp := "Hi, World!" if got != exp { t.Errorf("Expected %q, got %q", exp, got) } }