musl-tcc/tests/printf.c

8 lines
81 B
C
Raw Normal View History

2022-04-15 01:26:23 +00:00
#include<stdio.h>
int main(void)
{
printf("%d\nHello World\n",1);
return 0;
}