From b598ee8ba18bc0b20e3990a135a5deea74f18b6a Mon Sep 17 00:00:00 2001 From: lordwelch Date: Mon, 11 Jan 2016 09:10:52 -0800 Subject: [PATCH] initial files --- doc.go | 6 ++++++ main.go | 10 ++++++++++ 2 files changed, 16 insertions(+) create mode 100644 doc.go create mode 100644 main.go diff --git a/doc.go b/doc.go new file mode 100644 index 0000000..3058279 --- /dev/null +++ b/doc.go @@ -0,0 +1,6 @@ +// PresentationApp project doc.go + +/* +PresentationApp document +*/ +package main diff --git a/main.go b/main.go new file mode 100644 index 0000000..f9d4b3c --- /dev/null +++ b/main.go @@ -0,0 +1,10 @@ +// PresentationApp project main.go +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("Hello World!") +}