FmtIntBase

FmtIntBase :: enum u8 {
    Bin :: 0;
    Dec;
    Oct;
    Hex;
}

Number base used for formatted printing.

Variants

Bin - Format as binary number.

Dec - Format as decimal number.

Oct - Format as octal number.

Hex - Format as haxadecimal number.

Declared in: print.bl