Skip to content

Go Função

Luan Freitas edited this page Nov 28, 2019 · 2 revisions

Go também possui funções como outras linguagem, as funções podem retornar valores únicos, múltiplos e até mesmo retornar outra função.

package main

import "fmt"

func somar (a int ,b int) int{`
    return a + b
}

func main(){
    res := somar(1, 2)`
    fmt.Println("1 + 2 = ", res)
}
Clone this wiki locally