Merge pull request #7 from faisalman/master

Added ActionScript, UNIX Shells, Windoze batch, CoffeeScript, Qu, XQuery, haXe, Objective-J
This commit is contained in:
Mike Donaghy
2011-07-23 21:58:40 -07:00
11 changed files with 36 additions and 0 deletions

15
a/actionscript.as Normal file
View File

@@ -0,0 +1,15 @@
package
{
import flash.display.Sprite;
import flash.text.TextField;
public class actionscript extends Sprite
{
private var hello:TextField = new TextField();
public function actionscript(){
hello.text = "Hello, World!";
addChild(hello);
}
}
}