Hello WWWWWWorld!

This commit is contained in:
Ethan Lee
2020-01-01 15:29:24 -05:00
commit f7c0321b71
133 changed files with 154973 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
package {
public class tmap {
public static function init():void {
for (var i:int = 0; i < 30; i++) {
contents.push("");
}
index = 0;
}
public static function reset():void {
index = 0;
}
public static function push(t:String):void {
contents[index] = t;
index++;
}
public static var contents:Vector.<String> = new Vector.<String>;
public static var index:int;
}
}