Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/as3_new/src/tests/TestWhileTrue.as
2025-07-17 22:42:32 +02:00

17 lines
235 B
ActionScript

package tests
{
public class TestWhileTrue
{
public function run():*
{
var a:int = Math.floor(Math.random( ) * 6);
if (a > 4) {
while(true) {
}
}
}
}
}