mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-03 10:03:20 +08:00
8 lines
101 B
C
8 lines
101 B
C
#include "stdlib.h"
|
|
|
|
void HariMain(void)
|
|
{
|
|
printf("hello, world : %s %d\n", "aaa", 10);
|
|
exit(0);
|
|
}
|