Files
30dayMakeOS/30_day/hello4/hello4.c
2016-05-20 10:44:09 +08:00

8 lines
101 B
C

#include "stdlib.h"
void HariMain(void)
{
printf("hello, world : %s %d\n", "aaa", 10);
exit(0);
}