Created
October 10, 2022 16:10
-
-
Save MarvinJWendt/a45fadaa2e7bf235d8c6a538455eb967 to your computer and use it in GitHub Desktop.
Golang Hello World
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" | |
) | |
func main() { | |
fmt.Println("Hello, World!") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment