more playing around with hello world

This commit is contained in:
Dan Buch 2010-03-27 21:34:48 -04:00
parent d4260b52a9
commit ad6546255f

View File

@ -1,7 +1,8 @@
#include <iostream>
int main()
{
std::cout << "Hello World!" << std::endl;
std::cout << "Hello World!\n";
return 0;
}