Avi-D-coder / implicit-hie

Auto generate a stack or cabal multi component hie.yaml file
BSD 3-Clause "New" or "Revised" License
201 stars 17 forks source link

Add note about why custom function dropLast is used #19

Closed drupol closed 3 years ago

drupol commented 3 years ago

Add a note about why dropLast is used instead of init.

Follows #18

Avi-D-coder commented 3 years ago

Thanks

drupol commented 3 years ago

We could also do:

dropLast :: [a] -> [a]
dropLast [] = []
dropLast x = init x