mirror of
https://github.com/bootdotdev/fcc-learn-golang-assets.git
synced 2025-12-11 15:51:16 +00:00
10 lines
174 B
Go
10 lines
174 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
// single-line comments start with "//"
|
|
// comments are just for documentation - they don't execute
|
|
fmt.Println("hello world")
|
|
}
|