2012-06-20 17:17:24 +02:00

16 lines
285 B
C

//#include <stdio.h>
//#include "math.h"
/**
* This is the hello-world main file. Here are the first steps for testing and learning c programming.
* @return the program status
*/
int main(void) {
//BEGIN: ORGINAL
printf("Hello world!\n");
//END: ORGINAL
return 0;
}