Initial import

This commit is contained in:
Blue 2023-07-15 16:44:29 -03:00
commit 59c5878b5e
3 changed files with 16 additions and 0 deletions

6
main.cpp Normal file
View file

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