8 lines
70 B
Plaintext
8 lines
70 B
Plaintext
int zoom()
|
|
{
|
|
int r = 10;
|
|
r++;
|
|
int ret = r + 10;
|
|
return ret;
|
|
}
|