📜  从列表中删除元素 haskell - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:54.354000             🧑  作者: Mango

代码示例1
stripFirst [] = []
stripFirst (x:xs) = xs