exercism

Exercism solutions.
git clone git://code.dwrz.net/exercism
Log | Files | Refs

hello_world.go (120B)


      1 package greeting
      2 
      3 // HelloWorld returns the string "Hello, World!"
      4 func HelloWorld() string {
      5 	return "Hello, World!"
      6 }