-
-
Notifications
You must be signed in to change notification settings - Fork 9
ubyte literal
IsaacShelton edited this page Mar 21, 2022
·
1 revision
ubyte
literals are integers suffixed with ub
, which stands for "unsigned byte".
Example 1
255ub
Example 2
0ub
Example 3
32ub
The ub
suffix can also be used for character literals:
'A'ub
'\n'ub