11 lines
135 B
C
11 lines
135 B
C
#include<stdio.h>
|
|
int main()
|
|
{
|
|
printf("test\n");
|
|
printf("test again\n");
|
|
printf("test push\n");
|
|
/*test test on mac*/
|
|
return 0;
|
|
}
|
|
|