// // 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.cfa -- // // Author : Peter A. Buhr // Created On : Wed May 27 17:56:53 2015 // Last Modified By : Peter A. Buhr // Last Modified On : Tue Nov 6 17:56:22 2018 // Update Count : 16 // #include 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.cfa" // // End: //