Formatting in a slightly more idiomatic style

This commit is contained in:
Daniel Spiewak
2009-07-07 12:19:09 +08:00
committed by Mike Donaghy
parent e5d8b759a4
commit 62b8833b04

View File

@@ -1,6 +1,8 @@
#include<iostream>
using namespace std;
int main(){
int main()
{
cout << "Hello World" << endl;
}