You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
350 B
JavaScript
22 lines
350 B
JavaScript
15 years ago
|
print( "Hello World" )
|
||
|
var arr = new Array();
|
||
|
|
||
|
for( var idx = 0; idx < 500; ++idx )
|
||
|
{
|
||
|
arr[idx] = new QLabel(this);
|
||
|
arr[idx].text = "foo " + idx;
|
||
|
}
|
||
|
|
||
|
for( var idx = 0; idx < 500; ++idx )
|
||
|
{
|
||
|
println( arr[idx].text );
|
||
|
arr[idx] = new QLabel(this);
|
||
|
arr[idx].text = "bar " + idx;
|
||
|
}
|
||
|
|
||
|
for( var idx = 0; idx < 500; ++idx )
|
||
|
{
|
||
|
println( arr[idx].text );
|
||
|
}
|
||
|
|