global_init.cvc 98 B

12345678
  1. extern void printInt(int val);
  2. int a = 10;
  3. export int main() {
  4. printInt(a);
  5. return 0;
  6. }