tvl-depot/scratch/brilliant/Utils.hs
William Carroll 1af0007a7d Create a Utils module
To stylize things...
2020-08-05 21:51:55 +01:00

8 lines
328 B
Haskell

--------------------------------------------------------------------------------
module Utils where
--------------------------------------------------------------------------------
import Data.Function ((&))
--------------------------------------------------------------------------------
(|>) :: a -> (a -> b) -> b
(|>) = (&)