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
Currently, QB64-PE supports the usage of _RGB32 and _RGBA32 in CONST statements, which allows for improved code readability and maintainability when working with color values. It would be beneficial to extend this capability to include the CHR$ function within CONST statements as well.
This would enable folks to define constants representing ASCII characters or sequences, like how _RGB32 constants are currently supported when working with color values. The proposed behavior would allow code like the following to be valid:
CONSTCRLF=CHR$(13)+CHR$(10)
The text was updated successfully, but these errors were encountered:
Currently, QB64-PE supports the usage of
_RGB32
and_RGBA32
inCONST
statements, which allows for improved code readability and maintainability when working with color values. It would be beneficial to extend this capability to include theCHR$
function withinCONST
statements as well.This would enable folks to define constants representing ASCII characters or sequences, like how
_RGB32
constants are currently supported when working with color values. The proposed behavior would allow code like the following to be valid:The text was updated successfully, but these errors were encountered: