RosettaCodeData/Task/Conditional-structures/Ela/conditional-structures-4.ela
2023-07-01 13:44:08 -04:00

3 lines
93 B
Text

force lst = match lst with
x::xs = x :: force xs
[] = []