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

13 lines
168 B
C
Raw Normal View History

#include <stdio.h>
#include <math.h>
#include <board.h>
#include "swtimer.h"
int main(void)
{
double a = 1.2;
printf("Hello world! %g\n", a);
return 0;
}