Skip to content

ubyte literal

IsaacShelton edited this page Mar 21, 2022 · 1 revision

ubyte literal

ubyte literals are integers suffixed with ub, which stands for "unsigned byte".

Example 1

255ub

Example 2

0ub

Example 3

32ub

Character Literals

The ub suffix can also be used for character literals:

'A'ub
'\n'ub
Clone this wiki locally