mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-08-03 20:01:13 +00:00
17 lines
231 B
ActionScript
17 lines
231 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestVector
|
|
{
|
|
public function run():*
|
|
{
|
|
var v:Vector.<String> = new Vector.<String>();
|
|
v.push("hello");
|
|
v[0] = "hi";
|
|
var a:int = 5;
|
|
v[a * 8 - 39] = "hi2";
|
|
trace(v[0]);
|
|
}
|
|
}
|
|
}
|