Porównaj commity

..

1 Commity

Autor SHA1 Wiadomość Data
xuu
761013df81
chore: cleanup day 20
Wszystkie etapy powiodły się
Go Test / build (pull_request) Successful in 34s
2023-12-21 16:44:35 -07:00

Wyświetl plik

@ -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 {