Sign in
go
/
website
/
b2020690573d42ad59cf673388a1453ea3a966c4
/
.
/
_content
/
talks
/
2016
/
applicative
/
func.go
blob: 4001d40012c4f0153d388b5e8a24d40b460f845f [
file
] [
log
] [
blame
]
// +build ignore,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)
}