main.cpp 75 B

12345678
  1. #include <iostream>
  2. extern void foo();
  3. int main() {
  4. foo();
  5. return 0;
  6. }