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>
// main file-executor
#include <iostream>
int main() {
printf("Hello World!\n");
std::cout << "Hello World!\n";
return 0;
}