Compare commits

..

1 Commits

Author SHA1 Message Date
xuu
761013df81
chore: cleanup day 20
All checks were successful
Go Test / build (pull_request) Successful in 34s
2023-12-21 16:44:35 -07:00

View File

@ -65,13 +65,9 @@ func run(scan *bufio.Scanner) (*result, error) {
// rx is present.. perform part 2.
if rx, ok := receivers["rx"]; ok {
var tip *conjunction
tip := m.m[rx[0]].(*conjunction) // panic if missing!
var lvalues []int
if p, ok := m.m[rx[0]].(*conjunction); ok {
tip = p
}
for k, v := range tip.pushes {
for i, h := range makeHistory(v) {
if i == 1 && len(h) > 0 && h[0] > 0 {