//
// 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: //
