From 0065f2b0250a55be00dd1595df353c6e242d62b7 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sat, 27 Mar 2010 22:03:12 -0400 Subject: [PATCH] switching to use printf instead of "cout <<" --- src/hello-world.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/hello-world.cpp b/src/hello-world.cpp index 825b113..98a934e 100644 --- a/src/hello-world.cpp +++ b/src/hello-world.cpp @@ -1,10 +1,7 @@ -#include - -using namespace std; - +#include int main() { - cout << "Hello World!\n"; + printf("Hello World!\n"); return 0; }