blob: 66616befd6656d5ca6c064d2be9b0950449e122e [file] [log] [blame]
// Copyright 2018 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"
// Meng Haoran 孟浩然 (689-740), "Chun xiao" 春曉
var poem = `春眠不覺曉
處處聞啼鳥
夜來風雨聲
花落知多少`
func main() {
fmt.Println(poem)
}