mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-05 18:34:45 +00:00
17 lines
235 B
ActionScript
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) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|