14 lines
109 B
Plaintext
14 lines
109 B
Plaintext
integer x() inline
|
|
{
|
|
return 3;
|
|
}
|
|
|
|
default
|
|
{
|
|
touch(integer n)
|
|
{
|
|
x();
|
|
n++;
|
|
}
|
|
}
|