mirror of
https://github.com/mytechnotalent/Embedded-Hacking.git
synced 2026-05-23 16:09:47 +02:00
10 lines
140 B
C
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");
|
|
}
|