5 lines
88 B
Text
5 lines
88 B
Text
def f : List Nat → List Nat
|
|
| a::xs@(b::bs) => xs
|
|
| _ => []
|
|
|
|
#print f
|