Create a file 1.go with following content
package main
import "fmt"
func main() {
fmt.Println("My First GoLang Program")
}
To run the program, use command
go run 1.go

Visited 1 times, 1 visit(s) today
Create a file 1.go with following content
package main
import "fmt"
func main() {
fmt.Println("My First GoLang Program")
}
To run the program, use command
go run 1.go
