From 4421c49db88c551a53819ae4a669b54a9312bf3e Mon Sep 17 00:00:00 2001 From: Witaya Tospitakkul Date: Mon, 1 Oct 2018 20:24:12 +0700 Subject: [PATCH] add helloworld in golang --- code/wtospit.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 code/wtospit.go diff --git a/code/wtospit.go b/code/wtospit.go new file mode 100644 index 0000000..57f7ca4 --- /dev/null +++ b/code/wtospit.go @@ -0,0 +1,10 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("Hello from Thailand") +} +