repository
0.0.0-20240729051956-27ba15d50a3e
Repository: https://github.com/gepzuu/go-projects.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
# README
Documentation:
Getting Started:
Installing Go:
To install Go, follow the instructions on the official Go website: https://golang.org/dl/
Running Go Program:
To run a Go program, save the code in a file with a .go
extension (e.g., main.go
) and use the go run
command.
Example:
main.go
package main
import "fmt"
func main() {
fmt.Println("hello world")
}
Running the Program:
$ go run main.go
Output:
hello world