12 lines
93 B
Plaintext
12 lines
93 B
Plaintext
process main()
|
|
{
|
|
uint8: x;
|
|
x = 0;
|
|
x = 255;
|
|
x += 1;
|
|
sint8: y;
|
|
y = 0;
|
|
y = -1;
|
|
y = 1;
|
|
}
|