https://repl.it/@tomzaku/advent-of-code
To get the output
cat day-1.in | runhaskell day-1.hs
To save on the cache
cat day-1.in | runhaskell day-1.hs | pbcopy
To save on files
cat day-1.in | runhaskell day-1.hs > day-1.out
To get the output
cat day-1.in | node day-1.hs
To save on the cache
cat day-1.in | node day-1.hs | pbcopy
To save on files
cat day-1.in | runhaskell day-1.hs > day-1.out