Move tests from rosapps to rostests
[reactos.git] / rostests / tests / hello / hello.c
1 #include <stdio.h>
2 #include <string.h>
3
4 int main(int argc, char* argv[])
5 {
6 printf("Hello world\n");
7 return(0);
8 }