Hello World (Go)

package main
import "fmt"

func main() {
    //Enter your code here. Read input from STDIN. Print output to STDOUT
    var inputString string
    fmt.Scanln(&inputString)
    fmt.Println("Hello, World.")
    fmt.Println(inputString)
}

Be the first to comment

Leave a Reply

Your email address will not be published.


*