Add files, minimal working rewind gun that must be equipped to charge

This commit is contained in:
2021-11-27 11:49:23 +00:00
parent e7ea7377e2
commit fe37f208da
3 changed files with 29 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
module ListHelp
(module Data.List
,initOrNull
)where
import Data.List
initOrNull :: [a] -> [a]
initOrNull [] = []
initOrNull xs = init xs