nhmk/示例/0-hello/hello.c

8 lines
80 B
C

#include <stdio.h>
int main(void)
{
printf("你好");
return 0;
}