Skip to content

Commit

Permalink
Merge pull request #7 from faisalman/master
Browse files Browse the repository at this point in the history
Added ActionScript, UNIX Shells, Windoze batch, CoffeeScript, Qu, XQuery, haXe, Objective-J
  • Loading branch information
leachim6 committed Jul 24, 2011
2 parents 344ce4e + 6a2672d commit fc38178
Show file tree
Hide file tree
Showing 11 changed files with 36 additions and 0 deletions.
15 changes: 15 additions & 0 deletions a/actionscript.as
Original file line number Diff line number Diff line change
@@ -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);
}
}
}
3 changes: 3 additions & 0 deletions b/batch.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@echo off
echo Hello, World!
pause
1 change: 1 addition & 0 deletions c/coffeescript.coffee
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alert "Hello, World!"
2 changes: 2 additions & 0 deletions c/csh.csh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/csh
echo "Hello, World!"
5 changes: 5 additions & 0 deletions h/Haxe.hx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class Haxe {
static function main() {
trace("Hello, World!");
}
}
2 changes: 2 additions & 0 deletions k/ksh.ksh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/ksh
echo "Hello, World!"
1 change: 1 addition & 0 deletions o/objective-j.j
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
document.write("Hello, World!");
1 change: 1 addition & 0 deletions q/qu.qu
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
'Hello, World!'
2 changes: 2 additions & 0 deletions t/tcsh.tcsh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/tcsh
echo "Hello, World!"
2 changes: 2 additions & 0 deletions x/xquery.xq
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
let $hello := "Hello, World!"
return $hello
2 changes: 2 additions & 0 deletions z/zsh.zsh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/zsh
echo "Hello, World!"

0 comments on commit fc38178

Please sign in to comment.