Files
Embedded-Hacking/0x0001_hello-world/main.c
T
2024-04-20 14:07:14 -04:00

10 lines
140 B
C

#include <stdio.h>
#include "pico/stdlib.h"
int main(void) {
stdio_init_all();
while (true)
printf("hello, world\r\n");
}