8 lines
97 B
Plaintext
8 lines
97 B
Plaintext
process main (?uint8: in, !uint8: out, !uint8: err)
|
|
{
|
|
int: x,y,z;
|
|
x = y;
|
|
y = z + 5;
|
|
x = 2;
|
|
}
|