From e59047cde52501bdf129a009d13f4d9b6389140a Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Mon, 30 Mar 2020 03:31:40 +1300 Subject: [PATCH] Clean up logic With only this file having comments, it seems right to normalize it here. --- c/c++.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/c/c++.cpp b/c/c++.cpp index 2b935d2a..241c38e6 100755 --- a/c/c++.cpp +++ b/c/c++.cpp @@ -1,9 +1,9 @@ -#include // include API +#include using namespace std; -int main() // the main code portion of a C++ program +int main() { - cout << "Hello World" << endl; //print Hello World on the screen - return 0; // conventional + cout << "Hello World" << endl; + return 0; }