1 #include <stdio.h>
2 
3 void foo() {
4     printf("testing\n");
5 }
6 
7 int main (int argc, char const *argv[]) {
8     foo();
9     return 0;
10 }
11