Skip to content

Instantly share code, notes, and snippets.

@leozz37

leozz37/main.go Secret

Created October 16, 2020 15:48
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 leozz37/321a80e780d8ecd1eb15bb3e539772f9 to your computer and use it in GitHub Desktop.
Save leozz37/321a80e780d8ecd1eb15bb3e539772f9 to your computer and use it in GitHub Desktop.
Simple Golang Hello World
package main
import "fmt"
func HelloWorld() string {
return "Hello from Golang!"
}
func main() {
fmt.Println(HelloWorld())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment