9 lines
120 B
C++
9 lines
120 B
C++
|
import importable;
|
||
|
|
||
|
extern int unrelated();
|
||
|
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
return from_import() + unrelated();
|
||
|
}
|