From c0b20f22e1afb2589459d4b5e9a38de360093709 Mon Sep 17 00:00:00 2001 From: Eno Compton Date: Thu, 8 Mar 2018 14:02:53 -0700 Subject: [PATCH] enocom: add Tang poem Change-Id: I7989ddc90269d5438faf448ad1aaa272e44d4f7e Reviewed-on: https://go-review.googlesource.com/99619 Reviewed-by: Kevin Burke --- enocom/main.go | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 enocom/main.go diff --git a/enocom/main.go b/enocom/main.go new file mode 100644 index 0000000..66616be --- /dev/null +++ b/enocom/main.go @@ -0,0 +1,17 @@ +// 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) +}