mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-26 01:06:08 +00:00
20 lines
281 B
ActionScript
20 lines
281 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestStringConcat
|
|
{
|
|
public function run():*
|
|
{
|
|
var k:int = 8;
|
|
this.traceIt("hello" + 5 * 6);
|
|
this.traceIt("hello" + (k - 1));
|
|
this.traceIt("hello" + 5 + 6);
|
|
}
|
|
|
|
private function traceIt(s:String) : void
|
|
{
|
|
trace(s);
|
|
}
|
|
}
|
|
}
|