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