Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 795 Bytes

README.md

File metadata and controls

45 lines (33 loc) · 795 Bytes

Advent of Code

Please don't judge any random language code here 😩

Dependencies

- Deno
- Rust (Rustup/Cargo)
- Elixir (Mix/IEX)
- Haskell (GHCUp)

Running

Typescript

In respective day directory:

$ deno run --allow-read ./index.ts
Elixir (2020 only)

In respective day directory:

$ iex -S mix 
iex > Aoc.main()
Haskell
$ runhaskell <day file name>
Rust

In respective day directory:

$ cargo run

Acknowledgements

Thanks to mhanberg for their wonderful starter repo