Created
April 2, 2019 18:07
-
-
Save ediskandarov/6f5c7a25f6f172416e0b383fad04c2de to your computer and use it in GitHub Desktop.
Golang hello world
This file contains hidden or 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" | |
func main() { | |
fmt.Printf("hello, world\n") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment