diff --git a/a/actionscript.as b/a/actionscript.as new file mode 100644 index 000000000..cdca6486b --- /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); + } + } +} diff --git a/b/batch.bat b/b/batch.bat new file mode 100755 index 000000000..cb4ab6f4d --- /dev/null +++ b/b/batch.bat @@ -0,0 +1,3 @@ +@echo off +echo Hello, World! +pause diff --git a/c/coffeescript.coffee b/c/coffeescript.coffee new file mode 100644 index 000000000..352826562 --- /dev/null +++ b/c/coffeescript.coffee @@ -0,0 +1 @@ +alert "Hello, World!" diff --git a/c/csh.csh b/c/csh.csh new file mode 100755 index 000000000..d792ef0e5 --- /dev/null +++ b/c/csh.csh @@ -0,0 +1,2 @@ +#!/bin/csh +echo "Hello, World!" diff --git a/h/Haxe.hx b/h/Haxe.hx new file mode 100644 index 000000000..4aecfc899 --- /dev/null +++ b/h/Haxe.hx @@ -0,0 +1,5 @@ +class Haxe { + static function main() { + trace("Hello, World!"); + } +} diff --git a/k/ksh.ksh b/k/ksh.ksh new file mode 100644 index 000000000..4482b087a --- /dev/null +++ b/k/ksh.ksh @@ -0,0 +1,2 @@ +#!/bin/ksh +echo "Hello, World!" diff --git a/o/objective-j.j b/o/objective-j.j new file mode 100644 index 000000000..10f5c8a93 --- /dev/null +++ b/o/objective-j.j @@ -0,0 +1 @@ +document.write("Hello, World!"); diff --git a/q/qu.qu b/q/qu.qu new file mode 100644 index 000000000..f4ee49e18 --- /dev/null +++ b/q/qu.qu @@ -0,0 +1 @@ +'Hello, World!' diff --git a/t/tcsh.tcsh b/t/tcsh.tcsh new file mode 100644 index 000000000..5badaf6a6 --- /dev/null +++ b/t/tcsh.tcsh @@ -0,0 +1,2 @@ +#!/bin/tcsh +echo "Hello, World!" diff --git a/x/xquery.xq b/x/xquery.xq new file mode 100644 index 000000000..4d63b983b --- /dev/null +++ b/x/xquery.xq @@ -0,0 +1,2 @@ +let $hello := "Hello, World!" +return $hello diff --git a/z/zsh.zsh b/z/zsh.zsh new file mode 100755 index 000000000..4b0a83e43 --- /dev/null +++ b/z/zsh.zsh @@ -0,0 +1,2 @@ +#!/bin/zsh +echo "Hello, World!"