aoc-2022

My solutions in postscript to Advent of Code 2022
Log | Files | Refs | README | LICENSE

commit e1622012cf71fa04f79b31a0c09647cf8d833918
Author: Natasha Kerensikova <natacha@instinctive.eu>
Date:   Wed, 30 Nov 2022 19:51:38 +0100

Initial commit

Diffstat:
ALICENSE | 13+++++++++++++
AREADME.md | 10++++++++++
2 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/LICENSE b/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2022, Natacha Porté + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/README.md b/README.md @@ -0,0 +1,10 @@ +This repository contains my attempts at solving +the [Advent of Code this year (2022)][1]. + +I tried for the first last year, and it was fun, so I'm doing it +again in 2022. This time, I'm using the opportunity to explore +stack-based languages, starting with PostScript 3 which seems to +be the most beginner-friendly. + +[1]: https://adventofcode.com/2022/events + "Events - Advent of Code 2022"