Sha256: 0fcab4336882865b48ffda8da29d167a5c3028fb75af1db27baf45a0aa9da40b
Contents?: true
Size: 1.5 KB
Versions: 27
Compression:
Stored size: 1.5 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 -- reviewers // 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. // // This is a convention done for Exercism exercises in the Go language track, // it is not a requirement of the Go programming language. // // This test versioning setup will be common to all the exercises in the // Go language track. When crafting your own solution file from scratch you // will be expected to add this constant or the initial test will fail. // The version number you should use will be found in the constant // "targetTestVersion" in the test file, see ./hello_test.go for more // information. const testVersion = 4 // HelloWorld needs a comment documenting it as package does. func HelloWorld() 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, reviewers will protest! return "" }
Version data entries
27 entries across 27 versions & 1 rubygems