Add Go Hello World program
This commit is contained in:
parent
20ed73cc9c
commit
6b26a4b5cf
1 changed files with 7 additions and 0 deletions
7
main.go
Normal file
7
main.go
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
fmt.Println("Hello, World!")
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue