musl-tcc/tests/printf.c

8 lines
81 B
C

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