Hello world code in the go language

This commit is contained in:
muarachmann 2018-10-11 04:48:04 +01:00 committed by Luke Oliff
parent 70a4059a9e
commit 77c79dfef2
1 changed files with 7 additions and 0 deletions

7
code/helloworld.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main(){
fmt.Printf("Hello, world.")
}