From 55d75f8805f20dc4ca2e11dede63d4ee62212a37 Mon Sep 17 00:00:00 2001 From: AdamHarte Date: Thu, 7 Apr 2011 11:16:57 +1200 Subject: [PATCH 1/2] added as2 and 3 --- a/actionscript2.as | 1 + a/actionscript3.as | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 a/actionscript2.as create mode 100644 a/actionscript3.as diff --git a/a/actionscript2.as b/a/actionscript2.as new file mode 100644 index 00000000..443020c0 --- /dev/null +++ b/a/actionscript2.as @@ -0,0 +1 @@ +trace("Hello World"); \ No newline at end of file diff --git a/a/actionscript3.as b/a/actionscript3.as new file mode 100644 index 00000000..ab3606b9 --- /dev/null +++ b/a/actionscript3.as @@ -0,0 +1,8 @@ +package { + import flash.display.Sprite; + public class HelloWorld extends Sprite { + public function HelloWorld():void { + trace("Hello World"); + } + } +} \ No newline at end of file From 63e23205f759a7fd570c19fd6d3c9a3ba5b935d8 Mon Sep 17 00:00:00 2001 From: Adam Harte Date: Wed, 6 Apr 2011 16:34:09 -0700 Subject: [PATCH 2/2] Edited a/actionscript2.as via GitHub --- a/actionscript2.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/a/actionscript2.as b/a/actionscript2.as index 443020c0..9df4af1c 100644 --- a/a/actionscript2.as +++ b/a/actionscript2.as @@ -1 +1 @@ -trace("Hello World"); \ No newline at end of file +trace( "Hello World" ); \ No newline at end of file