mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
9 lines
121 B
C
9 lines
121 B
C
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
printf("Hello world\n");
|
||
|
return(0);
|
||
|
}
|