Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



The first statement in a Go source file must be package name . Executable commands must always use package main.
If you want to change selection, open document below and click on "Move attachment"

How to Write Go Code - The Go Programming Language
clone it if it already exists in version control. $ cd hello $ go mod init example/user/hello go: creating new go.mod: module example/user/hello $ cat go.mod module example/user/hello go 1.16 $ <span>The first statement in a Go source file must be package name. Executable commands must always use package main. Next, create a file named hello.go inside that directory containing the following Go code: package main import "fmt" func main() { fmt.Println("Hello, world.") } Now you can build and i


Summary

statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

Details



Discussion

Do you want to join discussion? Click here to log in or create user.