Index: src/examples/hello.c
===================================================================
--- src/examples/hello.c	(revision 0db6fc0e30a15a277876f071902c2fced6294c93)
+++ 	(revision )
@@ -1,25 +1,0 @@
-//
-// 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 : Mon Feb 29 18:06:17 2016
-// Update Count     : 10
-//
-
-#include <fstream>
-
-int main() {
-	sout | "Bonjour au monde!" | endl;
-}
-
-// Local Variables: //
-// tab-width: 4 //
-// compile-command: "cfa hello.c" //
-// End: //
Index: src/tests/.expect/hello.txt
===================================================================
--- src/tests/.expect/hello.txt	(revision 7985fa5410478aa52d6410c814bd9432dab4d748)
+++ src/tests/.expect/hello.txt	(revision 7985fa5410478aa52d6410c814bd9432dab4d748)
@@ -0,0 +1,12 @@
+Hello world!
+Bonjour le monde!
+Hola Mundo!
+Hallo Welt!
+Kaixo Mundua!
+Chào thế giới!
+Привет мир!
+שלום עולם!
+你好，世界!
+こんにちは世界!
+안녕하세요 세계!
+नमस्ते दुनिया!
Index: src/tests/hello.c
===================================================================
--- src/tests/hello.c	(revision 7985fa5410478aa52d6410c814bd9432dab4d748)
+++ src/tests/hello.c	(revision 7985fa5410478aa52d6410c814bd9432dab4d748)
@@ -0,0 +1,36 @@
+//
+// 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           : Peter A. Buhr
+// Created On       : Wed May 27 17:56:53 2015
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Mon Jun  5 08:12:27 2017
+// Update Count     : 15
+//
+
+#include <fstream>
+
+int main() {
+	sout | "Hello world!" | endl;
+	sout | "Bonjour le monde!" | endl;
+	sout | "Hola Mundo!" | endl;
+	sout | "Hallo Welt!" | endl;
+	sout | "Kaixo Mundua!" | endl;
+	sout | "Chào thế giới!" | endl;
+	sout | "Привет мир!" | endl;
+	sout | "שלום עולם!" | endl;
+	sout | "你好，世界!" | endl;
+	sout | "こんにちは世界!" | endl;
+	sout | "안녕하세요 세계!" | endl;
+	sout | "नमस्ते दुनिया!" | endl;
+}
+
+// Local Variables: //
+// tab-width: 4 //
+// compile-command: "cfa hello.c" //
+// End: //
