Skip to content
Snippets Groups Projects
max.go 115 B
Newer Older
  • Learn to ignore specific revisions
  • Oliver Herms's avatar
    Oliver Herms committed
    package math
    
    // Max returns the maximum of a and b
    func Max(a, b int) int {
    	if a > b {
    		return a
    	}
    	return b
    }