File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ The dev-* branches are deprecated since the main branch is not synchronized to t
69
69
| -------------------| ----| -------------------| ----| -------------------| ----|
70
70
| if | :heavy_check_mark : | while | :heavy_check_mark : | () | :heavy_check_mark : |
71
71
| {} | :heavy_check_mark : | case | :heavy_check_mark : | until | :no_good : | select | :no_good : |
72
- | for | :construction : |
72
+ | for | :heavy_check_mark : |
73
73
74
74
### control operator
75
75
Original file line number Diff line number Diff line change
1
+ # v0.6.8
2
+
3
+ Supported "for command"
4
+
5
+ ``` bash
6
+ # ## example 1 ###
7
+ 🍣 for n in A B C ; do echo $n ; done
8
+ A
9
+ B
10
+ C
11
+ # ## example 2 ###
12
+ 🍣 set one two three
13
+ 🍣 for n ; do echo $n ; done
14
+ one
15
+ two
16
+ three
17
+ # ## example 3 ###
18
+ 🍣 for (( n= 0 ;n< 3 ;n++ )) ; do echo $n ; done
19
+ 0
20
+ 1
21
+ 2
22
+ ```
You can’t perform that action at this time.
0 commit comments