C updated to C++

This commit is contained in:
Spectre
2024-09-18 17:49:11 +07:00
parent ec18525f50
commit 27a67b38ce
+3 -3
View File
@@ -1,6 +1,6 @@
#include <stdio.h> #include <iostream>
// main file-executor
int main() { int main() {
printf("Hello World!\n"); std::cout << "Hello World!\n";
return 0; return 0;
} }