bloat-buster/tests/integer_formats.bbb
David Gonzalez Martin b8873564af
All checks were successful
CI / ci (ReleaseFast, ubuntu-latest) (push) Successful in 2m21s
CI / ci (ReleaseSmall, ubuntu-latest) (push) Successful in 2m20s
CI / ci (ReleaseSafe, ubuntu-latest) (push) Successful in 2m25s
CI / ci (Debug, ubuntu-latest) (push) Successful in 3m37s
Integer formats
2025-04-20 20:28:59 -06:00

8 lines
121 B
Plaintext

[export] main = fn [cc(c)] () s32
{
>a: s32 = 0o10;
>b: s32 = 0b1000;
>c: s32 = 0d0;
return a - b + c;
}