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
It would be nice if in addition to the decimal constant \ddd and \uxxxx
you could just embed an integer constant directly into a string constant prepended by \e.g. #"\0x33"
or something similar to the c syntax '\x33'
The Char.chr function works for this, but it cannot be used in pattern matches
[edit: I suppose just embedding the integer/word constants isn't terribly elegant due to \1x33 etc]
The text was updated successfully, but these errors were encountered:
sometimes it would be nice to reflect the constant as defined, rather than doing the conversion, for the benefit of readers comparing the implementation and specification.
It would be nice if in addition to the decimal constant \ddd and \uxxxx
you could just embed an integer constant directly into a string constant prepended by \e.g. #"\0x33"
or something similar to the c syntax '\x33'
The Char.chr function works for this, but it cannot be used in pattern matches
[edit: I suppose just embedding the integer/word constants isn't terribly elegant due to \1x33 etc]
The text was updated successfully, but these errors were encountered: