mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
285 B
C
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;
|
|
}
|
|
|