Skip to content

Instantly share code, notes, and snippets.

@janithl
Created September 3, 2018 11:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janithl/ad24641cc5d2428c5c88471b6553cce2 to your computer and use it in GitHub Desktop.
Save janithl/ad24641cc5d2428c5c88471b6553cce2 to your computer and use it in GitHub Desktop.
HelloWorld in Go
package main
import "fmt"
import "time"
func main() {
fmt.Println("ආයුබෝවේවා, මහරජානනි.")
var t = time.Now()
fmt.Printf("දැන් වේලාව %02d:%02d\n", t.Hour(), t.Minute())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment