mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-05-25 16:57:56 +02:00
14 lines
182 B
C
14 lines
182 B
C
#include <stdio.h>
|
|
#include "pico/stdlib.h"
|
|
|
|
int main(void) {
|
|
uint8_t age = 42;
|
|
|
|
age = 43;
|
|
|
|
stdio_init_all();
|
|
|
|
while (true)
|
|
printf("age: %d\r\n", age);
|
|
}
|