Skip to content

Commit 71007bc

Browse files
committed
Update README.md
1 parent 8e535c3 commit 71007bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,17 +72,17 @@ FOR i <- 1 TO 10000000
7272
a <- i
7373
NEXT i
7474
```
75-
* 显式转换+赋值: 730w/s
75+
* 显式转换+赋值: 740w/s
7676
```
7777
DECLARE a : STRING
78-
FOR i <- 1 TO 7300000
78+
FOR i <- 1 TO 7400000
7979
a <- STRING(i)
8080
NEXT i
8181
```
8282
* 隐式转换+赋值: 920w/s
8383
```
8484
DECLARE a : STRING
85-
FOR i <- 1 TO 10000000
85+
FOR i <- 1 TO 9200000
8686
a <- i
8787
NEXT i
8888
```

0 commit comments

Comments
 (0)