Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 494 Bytes

README.md

File metadata and controls

38 lines (28 loc) · 494 Bytes

Repl Online

https://repl.it/@tomzaku/advent-of-code

Haskell

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

Javascript

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