musl-tcc/tests/printf.c
2022-04-15 09:26:23 +08:00

8 lines
81 B
C

#include<stdio.h>
int main(void)
{
printf("%d\nHello World\n",1);
return 0;
}