Go: Hello world! example

From wikieduonline
Revision as of 06:50, 29 April 2020 by Welcome (talk | contribs) (Created page with "==Hello world== touch hello_world.go <pre> package main import "fmt" func main() { fmt.Println("Hello, world!") } </pre> where "fmt" is the package for ''formatte...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Hello world

touch hello_world.go
package main

import "fmt"

func main() {
    fmt.Println("Hello, world!")
}

where "fmt" is the package for formatted I/O, similar to C's C file input/output.[1]


go build hello_world.go
./hello_world
Hello, world!


See also

  • "fmt - The Go Programming Language". golang.org. Retrieved 2019-04-08.<templatestyles src="Module:Citation/CS1/styles.css"></templatestyles>
  • Advertising: