Sha256: 0352a92691ca715c20800b06a998c3c0e84ad4bcb7adfbcb7967f17703e9d077

Contents?: true

Size: 1 KB

Versions: 69

Compression:

Stored size: 1 KB

Contents

// This is a "stub" file.  It's a little start on your solution.
// It's not a complete solution though; you have to write some code.

// Package greeting should have a package comment that summarizes what it's about.
// https://golang.org/doc/effective_go.html#commentary
package greeting

// testVersion identifies the version of the test program that you are
// writing your code to. If the test program changes in the future --
// after you have posted this code to the Exercism site -- nitpickers
// will see that your code can't necessarily be expected to pass the
// current test suite because it was written to an earlier test version.
const testVersion = 3

// HelloWorld needs a comment documenting it as package does.
func HelloWorld(string) string {
	// Write some code here to pass the test suite.

	// When you have a working solution, REMOVE ALL THE STOCK COMMENTS.
	// They're here to help you get started but they only clutter a finished solution.
	// If you leave them in, nitpickers will protest!
	return ""
}

Version data entries

69 entries across 69 versions & 1 rubygems

Version Path
trackler-2.0.6.41 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.40 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.39 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.38 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.37 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.36 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.35 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.34 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.33 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.32 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.31 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.30 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.29 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.28 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.27 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.26 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.25 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.24 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.23 tracks/go/exercises/hello-world/hello_world.go
trackler-2.0.6.22 tracks/go/exercises/hello-world/hello_world.go