source: tests/hello.cfa@ 6a6e205

Last change on this file since 6a6e205 was 200fcb3, checked in by Peter A. Buhr <pabuhr@…>, 7 years ago

add auto newline to sout, change endl to nl

  • Property mode set to 100644
File size: 906 bytes
RevLine 
[7985fa5]1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
[dc8511c]7// hello.cfa --
[7985fa5]8//
9// Author : Peter A. Buhr
10// Created On : Wed May 27 17:56:53 2015
11// Last Modified By : Peter A. Buhr
[200fcb3]12// Last Modified On : Tue Dec 4 21:38:39 2018
13// Update Count : 17
[7985fa5]14//
15
[73abe95]16#include <fstream.hfa>
[7985fa5]17
18int main() {
[200fcb3]19 sout | "Hello world!";
20 sout | "Bonjour le monde!";
21 sout | "Hola Mundo!";
22 sout | "Hallo Welt!";
23 sout | "Kaixo Mundua!";
24 sout | "Chào thế giới!";
25 sout | "Привет мир!";
26 sout | "שלום עולם!";
27 sout | "你好,世界!";
28 sout | "こんにちは世界!";
29 sout | "안녕하세요 세계!";
30 sout | "नमस्ते दुनिया!";
[7985fa5]31}
32
33// Local Variables: //
34// tab-width: 4 //
[dc8511c]35// compile-command: "cfa hello.cfa" //
[7985fa5]36// End: //
Note: See TracBrowser for help on using the repository browser.