3 lines
93 B
Text
3 lines
93 B
Text
force lst = match lst with
|
|
x::xs = x :: force xs
|
|
[] = []
|