From 41c688316889ac2edddfae09fbeaa52a2206a33c Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Fri, 13 Sep 2024 21:54:37 -0600 Subject: initial commit --- hello_world.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hello_world.c (limited to 'hello_world.c') 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 +#include "pico/stdlib.h" + +int main() { + setup_default_uart(); + printf("Hello, world!\n"); + return 0; +} -- cgit v1.2.3-2-g168b