aoc-all

My solutions to all Advent of Code
git clone https://git.instinctive.eu/aoc-all.git
Log | Files | Refs | README | LICENSE

commit 977c9e51da561290cf3654129623c813e52d0586
parent 6953cc548f4935dc0e63776983949b4a945f1781
Author: Natasha Kerensikova <natgh@instinctive.eu>
Date:   Fri,  1 Dec 2023 20:40:47 +0000

Add 2023 infrastructure
Diffstat:
A2023/LICENSE | 13+++++++++++++
A2023/README.md | 8++++++++
2 files changed, 21 insertions(+), 0 deletions(-)

diff --git a/2023/LICENSE b/2023/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2023, 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/2023/README.md b/2023/README.md @@ -0,0 +1,8 @@ +This repository contains my attempts at solving +the [Advent of Code this year (2023)][1]. + +This is my third time playing this game, each time exercising a new +language. This year it's [CHICKEN Scheme][2]. + +[1]: https://adventofcode.com/2023/events "Events - Advent of Code 2023" +[2]: https://call-cc.org/ "CHICKEN Scheme"