From 837b96b00d144c339c05818f2b00a74ba59907c7 Mon Sep 17 00:00:00 2001 From: faisalman Date: Tue, 5 Apr 2011 13:44:23 +0700 Subject: [PATCH 1/7] Added Adobe Flash's ActionScript 3.0 --- a/actionscript.as | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 a/actionscript.as diff --git a/a/actionscript.as b/a/actionscript.as new file mode 100644 index 0000000..cdca648 --- /dev/null +++ b/a/actionscript.as @@ -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); + } + } +} From 1670308f449cf233b51c04e3477e8c1fbe02151a Mon Sep 17 00:00:00 2001 From: faisalman Date: Tue, 5 Apr 2011 16:07:26 +0700 Subject: [PATCH 2/7] Added other major UNIX shells (ksh, csh, tcsh, zsh) and MS-Windows batch --- b/batch.bat | 3 +++ c/csh.csh | 2 ++ k/ksh.ksh | 2 ++ t/tcsh.tcsh | 2 ++ z/zsh.zsh | 2 ++ 5 files changed, 11 insertions(+) create mode 100755 b/batch.bat create mode 100644 c/csh.csh create mode 100644 k/ksh.ksh create mode 100644 t/tcsh.tcsh create mode 100644 z/zsh.zsh diff --git a/b/batch.bat b/b/batch.bat new file mode 100755 index 0000000..cb4ab6f --- /dev/null +++ b/b/batch.bat @@ -0,0 +1,3 @@ +@echo off +echo Hello, World! +pause diff --git a/c/csh.csh b/c/csh.csh new file mode 100644 index 0000000..d792ef0 --- /dev/null +++ b/c/csh.csh @@ -0,0 +1,2 @@ +#!/bin/csh +echo "Hello, World!" diff --git a/k/ksh.ksh b/k/ksh.ksh new file mode 100644 index 0000000..4482b08 --- /dev/null +++ b/k/ksh.ksh @@ -0,0 +1,2 @@ +#!/bin/ksh +echo "Hello, World!" diff --git a/t/tcsh.tcsh b/t/tcsh.tcsh new file mode 100644 index 0000000..5badaf6 --- /dev/null +++ b/t/tcsh.tcsh @@ -0,0 +1,2 @@ +#!/bin/tcsh +echo "Hello, World!" diff --git a/z/zsh.zsh b/z/zsh.zsh new file mode 100644 index 0000000..4b0a83e --- /dev/null +++ b/z/zsh.zsh @@ -0,0 +1,2 @@ +#!/bin/zsh +echo "Hello, World!" From 5d60baa6ba37c497a77fc54baecb982e4187256f Mon Sep 17 00:00:00 2001 From: faisalman Date: Thu, 7 Apr 2011 00:47:11 +0700 Subject: [PATCH 3/7] Added CoffeeScript --- c/coffeescript.coffee | 1 + c/csh.csh | 0 z/zsh.zsh | 0 3 files changed, 1 insertion(+) create mode 100644 c/coffeescript.coffee mode change 100644 => 100755 c/csh.csh mode change 100644 => 100755 z/zsh.zsh diff --git a/c/coffeescript.coffee b/c/coffeescript.coffee new file mode 100644 index 0000000..3528265 --- /dev/null +++ b/c/coffeescript.coffee @@ -0,0 +1 @@ +alert "Hello, World!" diff --git a/c/csh.csh b/c/csh.csh old mode 100644 new mode 100755 diff --git a/z/zsh.zsh b/z/zsh.zsh old mode 100644 new mode 100755 From 5af9c44aa392027cb547bbe9370dfb3b6e0ff881 Mon Sep 17 00:00:00 2001 From: faisalman Date: Thu, 7 Apr 2011 01:51:15 +0700 Subject: [PATCH 4/7] Added Qu --- q/qu.qu | 1 + 1 file changed, 1 insertion(+) create mode 100644 q/qu.qu diff --git a/q/qu.qu b/q/qu.qu new file mode 100644 index 0000000..f4ee49e --- /dev/null +++ b/q/qu.qu @@ -0,0 +1 @@ +'Hello, World!' From b7010cd07e19637472045f96eae7b12ad2c45582 Mon Sep 17 00:00:00 2001 From: faisalman Date: Fri, 8 Apr 2011 01:47:17 +0700 Subject: [PATCH 5/7] Added XQuery --- x/xquery.xq | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 x/xquery.xq diff --git a/x/xquery.xq b/x/xquery.xq new file mode 100644 index 0000000..4d63b98 --- /dev/null +++ b/x/xquery.xq @@ -0,0 +1,2 @@ +let $hello := "Hello, World!" +return $hello From 5656e8329f7ae712125938370a13906cc229d731 Mon Sep 17 00:00:00 2001 From: faisalman Date: Fri, 8 Apr 2011 02:21:36 +0700 Subject: [PATCH 6/7] Added haXe --- h/Haxe.hx | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 h/Haxe.hx diff --git a/h/Haxe.hx b/h/Haxe.hx new file mode 100644 index 0000000..4aecfc8 --- /dev/null +++ b/h/Haxe.hx @@ -0,0 +1,5 @@ +class Haxe { + static function main() { + trace("Hello, World!"); + } +} From 6a2672da4668e71ea8b4b8e132eaf600d87f1e7e Mon Sep 17 00:00:00 2001 From: faisalman Date: Sat, 9 Apr 2011 23:01:05 +0700 Subject: [PATCH 7/7] Added Objective-J --- o/objective-j.j | 1 + 1 file changed, 1 insertion(+) create mode 100644 o/objective-j.j diff --git a/o/objective-j.j b/o/objective-j.j new file mode 100644 index 0000000..10f5c8a --- /dev/null +++ b/o/objective-j.j @@ -0,0 +1 @@ +document.write("Hello, World!");