[release] merge previous version into master to avoid the increased version number
This commit is contained in:
commit
68125ee7d8
2 changed files with 17 additions and 1 deletions
2
.version
2
.version
|
@ -1 +1 @@
|
||||||
2.2
|
2.3
|
||||||
|
|
16
README.md
16
README.md
|
@ -83,6 +83,22 @@ bB
|
||||||
sS
|
sS
|
||||||
dD
|
dD
|
||||||
eE
|
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*
|
## *flat map*
|
||||||
|
|
Loading…
Reference in a new issue