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