diff options
author | clyne <clyne@bitgloo.com> | 2022-12-01 08:09:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-01 08:09:24 -0500 |
commit | 99583778b3127567eaeddacd57807ec096a2502f (patch) | |
tree | 13393088ba80daca5fd931c52884956504442e8f | |
parent | d1df588459c25bf68122fb703914abafbe3bb27f (diff) |
Fix a couple typos
-rw-r--r-- | day1/part2.bas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/day1/part2.bas b/day1/part2.bas index 4ea4835..7720cb4 100644 --- a/day1/part2.bas +++ b/day1/part2.bas @@ -1,8 +1,8 @@ -REM Advent of Code 2022: Day 1, part 1 +REM Advent of Code 2022: Day 1, part 2 REM Written in Applesoft BASIC 10 ONERR GOTO 900 - 20 DIM CALS(200):CURR = 0 + 20 DIM CALS(5):CURR = 0 30 PRINT CHR$ (4),"OPEN INPUT" 40 PRINT CHR$ (4),"READ INPUT" 100 S$ = "" |