You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
##f should not be in quotes, because it is a boolean rather than a string. Paper inherits HandleVars, which appears to produce a QuotedString, which for non-string values such booleans isn't correct. Perhaps a more appropriate behavior would be to accept Python booleans and produce Scheme booleans:
I think you're right, and I also think assigning Python booleans would be the correct way to go. However, since I don't know how that might affect existing use(r)s I suggest to
ensure that '##f' will correctly be interpreted as a boolean
##f
should not be in quotes, because it is a boolean rather than a string.Paper
inheritsHandleVars
, which appears to produce aQuotedString
, which for non-string values such booleans isn't correct. Perhaps a more appropriate behavior would be to accept Python booleans and produce Scheme booleans:The text was updated successfully, but these errors were encountered: