Index: src/examples/hello.c
===================================================================
--- src/examples/hello.c	(revision 843054c23fcb725d2486e5e42e91b3741bc523b8)
+++ src/examples/hello.c	(revision 4162aea970265c10df9b12f66ffeb5cbbec83b74)
@@ -1,15 +1,31 @@
+//
+// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+//
+// hello.c -- 
+//
+// Author           : Richard C. Bilson
+// Created On       : Wed May 27 17:56:53 2015
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Wed May 27 18:14:58 2015
+// Update Count     : 1
+//
+
 #include "fstream.h"
 
 int main() {
-    ofstream *sout = ofstream_stdout();
-    ifstream *sin = ifstream_stdin();
-    sout << "Bonjour au monde!\n";
-    sout << 3 << " " << 3.5 << " " << 'a' << " " << "abc" << "\n";
-    int i, j, k;
-    sin >> &i >> &j >> &k;
-    sout << "i:" << i << " j:" << j << " k:" << k << "\n";
+	ofstream *sout = ofstream_stdout();
+	ifstream *sin = ifstream_stdin();
+	sout << "Bonjour au monde!\n";
+	sout << 3 << " " << 3.5 << " " << 'a' << " " << "abc" << "\n";
+	int i, j, k;
+	sin >> &i >> &j >> &k;
+	sout << "i:" << i << " j:" << j << " k:" << k << "\n";
 }
 
 // Local Variables: //
-// compile-command: "../../bin/cfa hello.c fstream.o iostream.o" //
+// tab-width: 4 //
+// compile-command: "cfa hello.c fstream.o iostream.o" //
 // End: //
