我很难找到在 Scheme 中将布尔值转换为字符串的示例。
我的问题是我使用 string-append 将几个字符串添加在一起作为调试器的一部分。我的解决方法是检查是否等于#t,然后附加“#t”,并与#f 类似。
我的问题-Scheme 中是否有将布尔值转换为字符串的方法?像 bool->string 这样的东西?
我的代码:
(if (equal? val #t)
(string-append (number->string count) ":" "#t")
(string-append (number->string count) ":" "#f") )