Created
September 3, 2018 11:11
-
-
Save janithl/ad24641cc5d2428c5c88471b6553cce2 to your computer and use it in GitHub Desktop.
HelloWorld in Go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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