4 lines
78 B
Text
4 lines
78 B
Text
def f (x : Nat × Nat) : Nat :=
|
||
match x with
|
||
| (0, 0) => 1
|
||
| (x+1, _) => 2
|