Created
September 30, 2016 06:52
-
-
Save dallarosa/e59a36e342bb7f6819f6b3a81850fe24 to your computer and use it in GitHub Desktop.
skeleton for any programming challenge
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import( | |
"fmt" | |
"bufio" | |
"os" | |
) | |
func main() { | |
reader := bufio.NewReader(os.Stdin) | |
a, _ := reader.ReadString('\n') | |
fmt.Println("Hello, World.") | |
fmt.Println(a) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment