15 lines
128 B
C++
15 lines
128 B
C++
|
#include <stdio.h>
|
||
|
#include "pico/stdlib.h"
|
||
|
|
||
|
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
stdio_init_all();
|
||
|
|
||
|
|
||
|
puts("Hello, world!");
|
||
|
|
||
|
return 0;
|
||
|
}
|