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