hello-world/go/helloworld.go

8 lines
108 B
Go
Raw Normal View History

2024-04-04 20:57:49 +00:00
//compiles and runs successfully
2024-04-04 18:17:17 +00:00
package main
import "fmt"
func main() {
fmt.Println("Hello World!")
}