15 lines
200 B
Go
15 lines
200 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
const Pi = 3.14
|
|
|
|
func main() {
|
|
const World = "world"
|
|
fmt.Println("Hello", World)
|
|
fmt.Println("Hello", Pi, "Day")
|
|
|
|
const Truth = true
|
|
fmt.Println("Go rules?", Truth)
|
|
}
|