1
0
Fork 0
mirror of https://github.com/Luzifer/mondash.git synced 2024-11-14 10:22:42 +00:00
mondash/Godeps/_workspace/src/github.com/flosch/pongo2/helpers.go

16 lines
143 B
Go
Raw Normal View History

2016-01-23 12:07:07 +00:00
package pongo2
func max(a, b int) int {
if a > b {
return a
}
return b
}
func min(a, b int) int {
if a < b {
return a
}
return b
}