initial files

This commit is contained in:
lordwelch 2016-01-11 09:10:52 -08:00
parent 85dc7edfd4
commit b598ee8ba1
2 changed files with 16 additions and 0 deletions

6
doc.go Normal file
View File

@ -0,0 +1,6 @@
// PresentationApp project doc.go
/*
PresentationApp document
*/
package main

10
main.go Normal file
View File

@ -0,0 +1,10 @@
// PresentationApp project main.go
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello World!")
}