Skip to content

Commit a6ea33d

Browse files
committed
Write docs
1 parent e63d952 commit a6ea33d

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The dev-* branches are deprecated since the main branch is not synchronized to t
6969
|-------------------|----|-------------------|----|-------------------|----|
7070
| if | :heavy_check_mark: | while | :heavy_check_mark: | () | :heavy_check_mark: |
7171
| {} | :heavy_check_mark: | case | :heavy_check_mark: | until | :no_good: | select | :no_good: |
72-
| for | :construction: |
72+
| for | :heavy_check_mark: |
7373

7474
### control operator
7575

RELEASE.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
```

0 commit comments

Comments
 (0)