diff --git a/README.md b/README.md new file mode 100644 index 0000000..8a49c3e --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +## Start up + +1. go build hello.go +2. ./hello diff --git a/hello.go b/hello.go new file mode 100644 index 0000000..437fb99 --- /dev/null +++ b/hello.go @@ -0,0 +1,9 @@ +package main + +import "fmt" + + +func main() { + fmt.Printf("Hello, World\n") +} +