4 lines
62 B
Text
4 lines
62 B
Text
|
|
|
|
def f (x y : Nat) : Option Nat :=
|
|
if x > y then x else none
|
|
|
|
|
def f (x y : Nat) : Option Nat :=
|
|
if x > y then x else none
|