diff options
| author | Kai Gunger <kgunger12@gmail.com> | 2025-12-04 00:07:37 -0500 |
|---|---|---|
| committer | Kai Gunger <kgunger12@gmail.com> | 2025-12-04 00:07:37 -0500 |
| commit | e62d448e244b23b2c589ac01f01c4f15a8b302c1 (patch) | |
| tree | 516a3ff025c42ddb3f1859c14c2b5c6f4500b1bc /tnslc/utils | |
| parent | 1c2cd72c064fffa340405e77d543c58b4aed8b24 (diff) | |
[tnslc] Scope label generators
Diffstat (limited to 'tnslc/utils')
| -rw-r--r-- | tnslc/utils/algo.tnsl | 2 |
1 files changed, 1 insertions, 1 deletions
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) ;/ |