Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
iewnfod committed Aug 21, 2023
1 parent 8e535c3 commit 71007bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,17 +72,17 @@ FOR i <- 1 TO 10000000
a <- i
NEXT i
```
* 显式转换+赋值: 730w/s
* 显式转换+赋值: 740w/s
```
DECLARE a : STRING
FOR i <- 1 TO 7300000
FOR i <- 1 TO 7400000
a <- STRING(i)
NEXT i
```
* 隐式转换+赋值: 920w/s
```
DECLARE a : STRING
FOR i <- 1 TO 10000000
FOR i <- 1 TO 9200000
a <- i
NEXT i
```
Expand Down

0 comments on commit 71007bc

Please sign in to comment.