~aleteoryx/up-for-it

ref: 4246448a779acc14b0ae09d49b547c634b8ea813 up-for-it/aoc/2025/01.tal -rw-r--r-- 253 bytes
4246448aAleteoryx advent of code 4 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
( advent of code 2025, day 1 )

@on-reset ( -> )
	;on-input #10 DEO2
	banner
	BRK

@banner ( -- )
	;/str
	&loop
		LDAk #18 DEO
		INC2 LDAk ?/loop
	POP2 JMP2r
@banner/str
	"advent 20 "of 20 "code, 20 "day 20 "1 0a 00

@on-input ( -> )
	#12 DEI
	
	
	BRK