Skip to content

Instantly share code, notes, and snippets.

@brockthebear
Last active April 12, 2017 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brockthebear/b1c64509f0f214678747af01a3267668 to your computer and use it in GitHub Desktop.
Save brockthebear/b1c64509f0f214678747af01a3267668 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"os"
"io"
)
func main() {
fmt.Printf("%s\n", "Hello, World.")
io.Copy(os.Stdout, os.Stdin)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment