mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
179 B
33 lines
179 B
/*===
|
|
10
|
|
9
|
|
8
|
|
7
|
|
6
|
|
5
|
|
4
|
|
3
|
|
2
|
|
1
|
|
10
|
|
9
|
|
8
|
|
7
|
|
6
|
|
5
|
|
4
|
|
3
|
|
2
|
|
1
|
|
===*/
|
|
|
|
/* Simple tests for assignment */
|
|
|
|
for (i = 10; i; i -= 1) {
|
|
print(i);
|
|
}
|
|
|
|
for (i = 10; i; i = i - 1) {
|
|
print(i);
|
|
}
|
|
|
|
|