gecko-dev/js2/jsc/test/ecma-e4/03.statements/for.1.js

19 строки
314 B
JavaScript

/*
* The for Statement
*/
function title() {
return "The for Statement";
}
function run() {
for(;;) print('a')
for(;i<100;) print('a')
for(;i<100;i++) print('a')
for(var i:int=0;i<100;i++) print('a')
}
/*
* Copyright (c) 1999, Mountain View Compiler Company. All rights reserved.
*/