mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-11-05 06:26:08 +00:00
11 lines
131 B
Go
11 lines
131 B
Go
|
package api
|
||
|
|
||
|
// min returns the smaller of the two passed numbers.
|
||
|
func min(a, b int) int {
|
||
|
if a < b {
|
||
|
return a
|
||
|
}
|
||
|
|
||
|
return b
|
||
|
}
|