From 264846a521f3476fa66fdb2f3bb56a314949050c Mon Sep 17 00:00:00 2001 From: Akshay Mankar Date: Fri, 1 Dec 2023 11:22:59 +0100 Subject: [PATCH] README --- README.org | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 README.org diff --git a/README.org b/README.org new file mode 100644 index 0000000..1de3a9a --- /dev/null +++ b/README.org @@ -0,0 +1,26 @@ +#+TITLE: Advent of Code 2023 +#+OPTIONS: toc:nil + +All programs read input from ~stdin~ and print output to ~stdout~. The output will be printed in this format: + +#+BEGIN_SRC +Part 1 Answer: +Part 2 Answer: +#+END_SRC + +* Haskell + +Run it like this: + +#+BEGIN_SRC bash +cabal run aoc2023 -- day < ./input/day +#+END_SRC + +* Bash + +Run it like this: + +#+BEGIN_SRC bash +./bash/main.sh day < ./input/day +#+END_SRC +