From 62b8833b04f9737f9341e14bfaa34b8950276f7a Mon Sep 17 00:00:00 2001 From: Daniel Spiewak Date: Tue, 7 Jul 2009 12:19:09 +0800 Subject: [PATCH] Formatting in a slightly more idiomatic style --- c/c++.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/c/c++.cpp b/c/c++.cpp index da7c1e33..3b931f69 100644 --- a/c/c++.cpp +++ b/c/c++.cpp @@ -1,6 +1,8 @@ #include + using namespace std; -int main(){ +int main() +{ cout << "Hello World" << endl; }