コード例 #1
0
ファイル: helloworld_test.go プロジェクト: VonC/godemo
// ExampleHelloWord shows how to call HelloWorld()
func ExampleHelloWorld() {
	fmt.Println(hw.HelloWorld("as an example"))
	// Output: Hello World as an example
}
コード例 #2
0
ファイル: helloworld_test.go プロジェクト: VonC/godemo
func TestHelloWorld(t *testing.T) {
	thw := hw.HelloWorld("as a test")
	if thw != "Hello World as a test" {
		t.Fatalf("Wrong HelloWorld: '%s'", thw)
	}
}
コード例 #3
0
ファイル: helloworld.go プロジェクト: VonC/godemo
// HelloWord main
func main() {
	fmt.Println(hw.HelloWorld("in go"))
}