add helloworld in golang

This commit is contained in:
Witaya Tospitakkul 2018-10-01 20:24:12 +07:00 committed by Luke Oliff
parent d803f6704f
commit 4421c49db8
1 changed files with 10 additions and 0 deletions

10
code/wtospit.go Normal file
View File

@ -0,0 +1,10 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello from Thailand")
}