From e62d448e244b23b2c589ac01f01c4f15a8b302c1 Mon Sep 17 00:00:00 2001 From: Kai Gunger Date: Thu, 4 Dec 2025 00:07:37 -0500 Subject: [tnslc] Scope label generators --- tnslc/utils/algo.tnsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tnslc/utils/algo.tnsl') diff --git a/tnslc/utils/algo.tnsl b/tnslc/utils/algo.tnsl index 35ac35c..49c4636 100644 --- a/tnslc/utils/algo.tnsl +++ b/tnslc/utils/algo.tnsl @@ -150,7 +150,7 @@ /; loop (i > 0) [i = i / 16] int n = i % 16 /; if (n > 9) - out.push_char('a' + n - 10) + out.push_char('A' + n - 10) ;; else out.push_char('0' + n) ;/ -- cgit v1.2.3