“Olá mundo em Golang” Respostas de código

Olá mundo em Golang

package main

import "fmt"

func main() {
    fmt.Println("hello world")
}

$ go run hello-world.go
hello world

$ go build hello-world.go
$ ls
hello-world    hello-world.go

$ ./hello-world
hello world
Fantastic Fish

Olá mundo em Golang

package main

import "fmt"

func main() {
  message := greetMe("world")
  fmt.Println(message)
}

func greetMe(name string) string {
  return "Hello, " + name + "!"
}
Harendra

Olá World Golang

package main

import fmt

func main() {
	fmt.Println("hello, world!")
}
Aggressive Addax

Respostas semelhantes a “Olá mundo em Golang”

Perguntas semelhantes a “Olá mundo em Golang”

Mais respostas relacionadas para “Olá mundo em Golang” em Go

Procure respostas de código populares por idioma

Procurar outros idiomas de código