summaryrefslogtreecommitdiff
path: root/hello_world.c
blob: 49008a61a6cf272503b9846c7b438cd1973524bb (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>
#include "pico/stdlib.h"

int main() {
	setup_default_uart();
	printf("Hello, world!\n");
	return 0;
}