7 lines
64 B
C
7 lines
64 B
C
|
int test() {
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
int x = test();
|
||
|
}
|