mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-04-05 02:42:25 +02:00
12 lines
179 B
C
12 lines
179 B
C
#include <stdio.h>
|
|
#include "pico/stdlib.h"
|
|
|
|
int main(void) {
|
|
float fav_num = 42.5;
|
|
|
|
stdio_init_all();
|
|
|
|
while (true)
|
|
printf("fav_num: %f\r\n", fav_num);
|
|
}
|