This website requires JavaScript.
Explore
Help
Sign In
qiurui
/
qtdeclarative
mirror of
https://github.com/qt/qtdeclarative.git
Watch
1
Star
0
Fork
You've already forked qtdeclarative
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
dev
qtdeclarative
/
tests
/
manual
/
v4
/
for
/
for.1.js
7 lines
94 B
JavaScript
Raw
Permalink
Normal View
History
Unescape
Escape
Add tests for the for-statement.
2012-05-04 11:13:32 +00:00
var
x
=
0
for
(
var
i
=
0
;
i
<
20
;
i
=
i
+
1
)
{
x
=
x
+
i
Fix the examples
2012-05-07 12:49:27 +00:00
print
(
(
i
+
") x = "
+
x
)
)
Add tests for the for-statement.
2012-05-04 11:13:32 +00:00
}