mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-05-17 13:43:28 +02:00
12 lines
185 B
C
12 lines
185 B
C
#include <stdio.h>
|
|
#include "pico/stdlib.h"
|
|
|
|
int main(void) {
|
|
double fav_num = 42.52525;
|
|
|
|
stdio_init_all();
|
|
|
|
while (true)
|
|
printf("fav_num: %lf\r\n", fav_num);
|
|
}
|