mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-04-21 10:36:03 +02:00
16 lines
267 B
C
16 lines
267 B
C
#include <stdio.h>
|
|
#include "pico/stdlib.h"
|
|
|
|
#define FAV_NUM 42
|
|
|
|
const int OTHER_FAV_NUM = 1337;
|
|
|
|
int main(void) {
|
|
stdio_init_all();
|
|
|
|
while (true) {
|
|
printf("FAV_NUM: %d\r\n", FAV_NUM);
|
|
printf("regular_fav_num: %d\r\n", OTHER_FAV_NUM);
|
|
}
|
|
}
|