Merge pull request #7 from faisalman/master
Added ActionScript, UNIX Shells, Windoze batch, CoffeeScript, Qu, XQuery, haXe, Objective-J
This commit is contained in:
commit
fc381788da
15
a/actionscript.as
Normal file
15
a/actionscript.as
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
3
b/batch.bat
Executable file
3
b/batch.bat
Executable file
@ -0,0 +1,3 @@
|
||||
@echo off
|
||||
echo Hello, World!
|
||||
pause
|
1
c/coffeescript.coffee
Normal file
1
c/coffeescript.coffee
Normal file
@ -0,0 +1 @@
|
||||
alert "Hello, World!"
|
5
h/Haxe.hx
Normal file
5
h/Haxe.hx
Normal file
@ -0,0 +1,5 @@
|
||||
class Haxe {
|
||||
static function main() {
|
||||
trace("Hello, World!");
|
||||
}
|
||||
}
|
1
o/objective-j.j
Normal file
1
o/objective-j.j
Normal file
@ -0,0 +1 @@
|
||||
document.write("Hello, World!");
|
2
t/tcsh.tcsh
Normal file
2
t/tcsh.tcsh
Normal file
@ -0,0 +1,2 @@
|
||||
#!/bin/tcsh
|
||||
echo "Hello, World!"
|
2
x/xquery.xq
Normal file
2
x/xquery.xq
Normal file
@ -0,0 +1,2 @@
|
||||
let $hello := "Hello, World!"
|
||||
return $hello
|
Loading…
x
Reference in New Issue
Block a user