#include #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); } }