mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-28 18:25:30 +00:00
13 lines
154 B
ActionScript
13 lines
154 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestComma
|
|
{
|
|
public function run():*
|
|
{
|
|
var a:int = 5;
|
|
var b:int = 0;
|
|
trace(a > 4 ? (b = 5, a) : 35);
|
|
}
|
|
}
|
|
} |