File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change 4
4
5
5
= SUBTITLE Concurrency and Asynchronous Programming
6
6
7
- In common with most modern programming languages Perl 6 is designed
8
- to L < support concurrency|http://en.wikipedia.org/wiki/Concurrent_computing >
9
- (allowing more than one thing to happen at the
10
- same time,) and asynchronous programming (sometime called event driven
11
- or reactive programming - that is an event or change in some part of a
12
- program may lead to an event or change in some other part of the program
7
+ In common with most modern programming languages Perl 6 is designed to
8
+ L < support concurrency|http://en.wikipedia.org/wiki/Concurrent_computing >
9
+ (allowing more than one thing to happen at the same time,) and
10
+ asynchronous programming (sometime called event driven or reactive
11
+ programming - that is an event or change in some part of a program
12
+ may lead to an event or change in some other part of the program
13
13
asynchronously to the program flow. )
14
14
15
15
The aim of the Perl concurrency design is to provide a high-level,
16
- composable, consistent
17
- interface regardless of how a virtual machine may implement it for a
18
- particular operating system, through layers of facilities as described
19
- below.
16
+ composable, consistent interface regardless of how a virtual machine
17
+ may implement it for a particular operating system, through layers of
18
+ facilities as described below.
20
19
21
20
= begin comment
22
21
You can’t perform that action at this time.
0 commit comments