aoc-2023

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

commit 2eda3f3c2ab65e87bdbd62b3e8b11bcd27f0d923
parent 256d123f149ab6b41e0397ba6d39f60f9e911c8d
Author: Natasha Kerensikova <natgh@instinctive.eu>
Date:   Fri,  1 Dec 2023 20:40:47 +0000

Add project infrastructure
Diffstat:
A.fossil-settings/ignore-glob | 2++
ALICENSE | 13+++++++++++++
AREADME.md | 8++++++++
3 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/.fossil-settings/ignore-glob b/.fossil-settings/ignore-glob @@ -0,0 +1,2 @@ +.git +*.txt diff --git a/LICENSE b/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/README.md b/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"