1 /* sample program for project manager */
2 
3 #include <stdio.h>
4 #include <stdlib.h>
5 
main()6 void main()
7 {
8     printf ("hello world\n");
9     test1();
10     test2();
11 }
12 
13