aoc-forth

Advent of code solutions in UF forth
git clone git://git.alexwennerberg.com/aoc-forth
Log | Files | Refs | README

commit 73e77d1a4020ae66046058f1341d758b07549cdb
parent 83fbcca810f5a017480ffffaad3ff58ce2ce2bb2
Author: alex wennerberg <awennerb@twitch.tv>
Date:   Tue, 23 Aug 2022 09:51:31 -0400

add todo

Diffstat:
M2021/01.fs | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/2021/01.fs b/2021/01.fs @@ -13,7 +13,7 @@ h# 5000 constant filespace " input.txt" filename -: solve +: solvea 0 readnum 2000 1 do @@ -23,4 +23,5 @@ h# 5000 constant filespace drop ; -solve . -\ No newline at end of file +solvea . +( TODO solve part 2 )