diff options
Diffstat (limited to 'hello_world.c')
-rw-r--r-- | hello_world.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hello_world.c b/hello_world.c new file mode 100644 index 0000000..49008a6 --- /dev/null +++ b/hello_world.c @@ -0,0 +1,8 @@ +#include <stdio.h> +#include "pico/stdlib.h" + +int main() { + setup_default_uart(); + printf("Hello, world!\n"); + return 0; +} |