Sign in
go
/
website
/
2c2263031c4b04df90e07063c8997bd2f9226f9f
/
.
/
_content
/
talks
/
2016
/
applicative
/
panic.go
blob: d2c935f1a218c057daeb22236ce59c41227af0bb [
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) {
return n / d, n % d
}
func main() {
quot, rem := div(4, 0)
// HL
fmt.Println(quot, rem)
}