From 83346521bcae1aa70f4f60d171bd3d2bd40b0e53 Mon Sep 17 00:00:00 2001 From: William Bell Date: Sun, 30 Jul 2023 01:08:59 +0200 Subject: [PATCH] try fix bug --- src/sortany.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sortany.go b/src/sortany.go index e756d80..65c4802 100644 --- a/src/sortany.go +++ b/src/sortany.go @@ -76,5 +76,6 @@ func compare(a, b any) (bool, error) { return y < x, nil } } + fmt.Println(a, b) return false, fmt.Errorf("cannot compare %s to %s", typeof(a), typeof(b)) }