mirror of https://github.com/aamine/cbc
12 lines
122 B
Plaintext
12 lines
122 B
Plaintext
|
import stdio;
|
||
|
import decloverride;
|
||
|
|
||
|
int f(void) { return 77; }
|
||
|
|
||
|
int
|
||
|
main(void)
|
||
|
{
|
||
|
printf("%d\n", f());
|
||
|
return 0;
|
||
|
}
|