Sign in
go
/
talks
/
fb41a9b433bf1d7e71d768e703c81170aa4f282c
/
.
/
content
/
2016
/
applicative
/
func.go
blob: c273fa361edfe0654713a1237733c5e2ddcd23ed [
file
]
// +build OMIT
package main
import "fmt"
// div divides n by d and returns the quotient and remainder.
func div(n, d int) (q, r int) {
// HL
return n / d, n % d
}
func main() {
quot, rem := div(4, 3)
fmt.Println(quot, rem)
}