Initial commit (template)

This commit is contained in:
2026-01-18 21:26:29 -03:00
commit 8aa9604d1a
8 changed files with 422 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;
}