From 27a67b38ce7899b1a4da983f0258afa249e59fef Mon Sep 17 00:00:00 2001 From: Spectre Date: Wed, 18 Sep 2024 17:49:11 +0700 Subject: [PATCH] C updated to C++ --- main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.cpp b/main.cpp index 6303cef..5a2267d 100644 --- a/main.cpp +++ b/main.cpp @@ -1,6 +1,6 @@ -#include -// main file-executor +#include + int main() { - printf("Hello World!\n"); + std::cout << "Hello World!\n"; return 0; }