1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/projects/hello-world/main.c
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;
}