@@ -0,0 +1,10 @@
package main
// Max returns the larger of two integers.
func Max(a, b int) int {
if a > b {
return a
} else {
return b
}
The note is not visible to the blocked user.