David Gonzalez Martin ed38358ad8 Implement 'and'
2024-05-25 07:53:12 -06:00

8 lines
114 B
Plaintext

fn [cc(.c)] main [export]() s32
{
>a: s32 = 5;
>b: s32 = 4;
>result = a & b;
return result - b;
}