-
Notifications
You must be signed in to change notification settings - Fork 2
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)
}
Linguagens de Programação - 5º SEMESTRE