Skip to content

Commit 4a6aeba

Browse files
authored
Chapel 2.8 release announcement (#68)
[reviewed by @DanilaFe]
2 parents ae71dcb + bf997cc commit 4a6aeba

22 files changed

+641
-0
lines changed

chpl-src/announcing-chapel-2.8.chpl

Lines changed: 469 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
This announcement didn't end up using top-level code, but I wanted to
2+
keep it alongside the others for symmetry.
3+
4+
(Specifically, it seemed weird to have one of the two debugging codes
5+
be testable and not the other; and I wasn't confident that I could
6+
inline the .good file for converter into the article in a clean way...
7+
though maybe I just didn't try hard enough?
79.1 KB
Loading
67 KB
Loading
12.4 KB
Loading
197 KB
Loading
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
use IO;
2+
3+
var s = new file(chpl_cstdout());
4+
var w = s.writer();
5+
6+
w.writeln("Hello, world!");
7+
w.writeln(1, " ", 2.0, " three");
8+
9+
record R {
10+
var x : int;
11+
}
12+
13+
// invokes Chapel's serialization framework
14+
var r = new R(5);
15+
w.writeln(r);
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--dyno --verify --no-checks --local
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Hello, world!
2+
1 2.0 three
3+
(x = 5)
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CHPL_LLVM==none
2+
CHPL_NETWORK_ATOMICS!=none

0 commit comments

Comments
 (0)