20 lines
185 B
C++
20 lines
185 B
C++
#include <stdio.h>
|
|
#include "pico/stdlib.h"
|
|
|
|
#include "settings.h"
|
|
|
|
namespace
|
|
{
|
|
|
|
}
|
|
|
|
int main()
|
|
{
|
|
stdio_init_all();
|
|
|
|
sleep_ms(1000);
|
|
|
|
puts("Hello, world!");
|
|
|
|
return 0;
|
|
}
|