blob: 4c099acafb7498a7d9c34b6e8642476d3940f6a4 [file] [log] [blame]
// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import "fmt"
const greeting = "Today is a great day!"
func main() {
fmt.Println("What's happening?", greeting)
}