Last change
on this file since 4be0117 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
|
Line | |
---|
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 | //
|
---|
7 | // hello.cfa --
|
---|
8 | //
|
---|
9 | // Author : Peter A. Buhr
|
---|
10 | // Created On : Wed May 27 17:56:53 2015
|
---|
11 | // Last Modified By : Peter A. Buhr
|
---|
12 | // Last Modified On : Tue Dec 4 21:38:39 2018
|
---|
13 | // Update Count : 17
|
---|
14 | //
|
---|
15 |
|
---|
16 | #include <fstream.hfa>
|
---|
17 |
|
---|
18 | int main() {
|
---|
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 | "नमस्ते दुनिया!";
|
---|
31 | }
|
---|
32 |
|
---|
33 | // Local Variables: //
|
---|
34 | // tab-width: 4 //
|
---|
35 | // compile-command: "cfa hello.cfa" //
|
---|
36 | // End: //
|
---|
Note:
See
TracBrowser
for help on using the repository browser.