[release] merge previous version into master to avoid the increased version number

This commit is contained in:
Sławomir Śledź 2019-08-31 02:14:44 +02:00
commit 68125ee7d8
2 changed files with 17 additions and 1 deletions

View file

@ -1 +1 @@
2.2
2.3

View file

@ -83,6 +83,22 @@ bB
sS
dD
eE
$ list 1 2 3 | map echo
1
2
3
$ list 1 2 3 | map 'echo $ is a number'
1 is a number
2 is a number
3 is a number
$ list 1 2 3 4 | map 'echo \($,$\) is a point'
(1,1) is a point
(2,2) is a point
(3,3) is a point
(4,4) is a point
```
## *flat map*