mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-07 23:37:32 +02:00
Merge pull request #1293 from ian-bertolacci/master
[chapel] Updated info for release 1.12.0
This commit is contained in:
@@ -960,7 +960,7 @@ proc main(){
|
|||||||
begin { // Reader task
|
begin { // Reader task
|
||||||
writeln( "Reader: waiting to read." );
|
writeln( "Reader: waiting to read." );
|
||||||
var read_sync = someSyncVar$;
|
var read_sync = someSyncVar$;
|
||||||
writeln( "value is ", read_sync );
|
writeln( "Reader: value is ", read_sync );
|
||||||
}
|
}
|
||||||
|
|
||||||
begin { // Writer task
|
begin { // Writer task
|
||||||
@@ -1053,7 +1053,7 @@ Occasionally check back here and on the [Chapel site](http://chapel.cray.com) to
|
|||||||
|
|
||||||
### What this tutorial is lacking:
|
### What this tutorial is lacking:
|
||||||
|
|
||||||
* Exposition of the standard modules
|
* Exposition of the [standard modules](http://chapel.cray.com/docs/latest/modules/modules.html)
|
||||||
* Multiple Locales (distributed memory system)
|
* Multiple Locales (distributed memory system)
|
||||||
* Records
|
* Records
|
||||||
* Parallel iterators
|
* Parallel iterators
|
||||||
@@ -1061,7 +1061,7 @@ Occasionally check back here and on the [Chapel site](http://chapel.cray.com) to
|
|||||||
Your input, questions, and discoveries are important to the developers!
|
Your input, questions, and discoveries are important to the developers!
|
||||||
-----------------------------------------------------------------------
|
-----------------------------------------------------------------------
|
||||||
|
|
||||||
The Chapel language is still in-development (version 1.11.0), so there are occasional hiccups with performance and language features.
|
The Chapel language is still in-development (version 1.12.0), so there are occasional hiccups with performance and language features.
|
||||||
The more information you give the Chapel development team about issues you encounter or features you would like to see, the better the language becomes.
|
The more information you give the Chapel development team about issues you encounter or features you would like to see, the better the language becomes.
|
||||||
Feel free to email the team and other developers through the [sourceforge email lists](https://sourceforge.net/p/chapel/mailman).
|
Feel free to email the team and other developers through the [sourceforge email lists](https://sourceforge.net/p/chapel/mailman).
|
||||||
|
|
||||||
@@ -1076,8 +1076,8 @@ Chapel can be built and installed on your average 'nix machine (and cygwin).
|
|||||||
[Download the latest release version](https://github.com/chapel-lang/chapel/releases/)
|
[Download the latest release version](https://github.com/chapel-lang/chapel/releases/)
|
||||||
and it's as easy as
|
and it's as easy as
|
||||||
|
|
||||||
1. `tar -xvf chapel-1.11.0.tar.gz`
|
1. `tar -xvf chapel-1.12.0.tar.gz`
|
||||||
2. `cd chapel-1.11.0`
|
2. `cd chapel-1.12.0`
|
||||||
3. `make`
|
3. `make`
|
||||||
4. `source util/setchplenv.bash # or .sh or .csh or .fish`
|
4. `source util/setchplenv.bash # or .sh or .csh or .fish`
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user