This website requires JavaScript.
Explore
Help
Sign In
luxolus
/
open-consul
Watch
2
Star
0
Fork
You've already forked open-consul
0
Code
Issues
1
Pull Requests
Packages
Releases
Wiki
Activity
12f1a71f00
open-consul
/
lib
/
math.go
16 lines
146 B
Go
Raw
Blame
History
package
lib
func
MaxInt
(
a
,
b
int
)
int
{
if
a
>
b
{
return
a
}
return
b
}
func
MinInt
(
a
,
b
int
)
int
{
if
a
>
b
{
return
b
}
return
a
}
Reference in New Issue
View Git Blame
Copy Permalink