Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 18s
Haskell strings are [Char]. Calling reverse / head / length on a SX raw string transparently produces a cons-list of char codes (via hk-str-head / hk-str-tail in runtime.sx), but (==) then compared the original raw string against the char-code cons-list and always returned False — so "racecar" == reverse "racecar" was False. Added hk-try-charlist-to-string and hk-normalize-for-eq in eval.sx; routed == and /= through hk-normalize-for-eq so a string compares equal to any cons-list whose elements are valid Unicode code points spelling the same characters, and "[]" ↔ "". palindrome.hs lifts from 9/12 → 12/12; conformance 33/34 → 34/34 programs, 266/269 → 269/269 tests. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>