Initial commit

This commit is contained in:
2026-04-03 15:08:28 -03:00
commit c0d83963e2
9 changed files with 433 additions and 0 deletions

9
main.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <iostream>
int main(int argc, char** argv)
{
(void)argc;
(void)argv;
std::cout << "Hello RPI" << std::endl;
return 0;
}