6 lines
126 B
Text
6 lines
126 B
Text
def f : Unit → Nat :=
|
|
fun (a : Unit) => 10
|
|
def g : Unit → Unit :=
|
|
fun (a : Unit) =>
|
|
match a with
|
|
| b@PUnit.unit => b
|