Added DB2 SQL, Gri, ici, Icon, J, Jade, Jason, Jess, K, LSL, M4, MEL, QuakeC, Qore, Simula, SMIL, SVG, UniComal, unlambda, VRML, VML, WSH, XBase++, XLogo, XPL0, XSLT, XUL and ZIM

This commit is contained in:
William Suggs 2009-03-02 13:08:45 +08:00 committed by Mike Donaghy
parent 0661854566
commit 2a5b239357
28 changed files with 155 additions and 0 deletions

1
d/db2.sql Normal file
View File

@ -0,0 +1 @@
VALUES('hello world')

1
g/gri.gri Normal file
View File

@ -0,0 +1 @@
show "hello world"

1
i/ici.ici Normal file
View File

@ -0,0 +1 @@
printf("Hello World\n");

3
i/icon.icn Normal file
View File

@ -0,0 +1,3 @@
procedure main()
write("Hello World");
end

3
j/j.ijs Normal file
View File

@ -0,0 +1,3 @@
#!/opt/local/bin/jc
echo 'Hello World'
exit ''

5
j/jade.jade Normal file
View File

@ -0,0 +1,5 @@
helloWorld();
begin
write "Hello World";
end;

2
j/jason.mas2j Normal file
View File

@ -0,0 +1,2 @@
!greeting.
+!greeting : true <- .print("Hello World").

1
j/jess.cpl Normal file
View File

@ -0,0 +1 @@
(printout t "Hello World")

1
k/k.k Normal file
View File

@ -0,0 +1 @@
"Hello World\n"

7
l/lsl.lsl Normal file
View File

@ -0,0 +1,7 @@
default
{
state_entry()
{
llSay(0, "Hello World");
}
}

1
m/m4.m4 Normal file
View File

@ -0,0 +1 @@
Hello

4
m/mel.mel Normal file
View File

@ -0,0 +1,4 @@
proc helloWorld () {
print "Hello World\n";
}
helloWorld;

1
q/QuakeC.qc Normal file
View File

@ -0,0 +1 @@
bprint("Hello World\n");

13
q/qore.q Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env qore
%exec-class HelloWorld
class HelloWorld
{
constructor()
{
background $.say("Hello World");
}
private say($arg)
{
printf("%s\n", $arg);
}
}

4
s/simula.sim Normal file
View File

@ -0,0 +1,4 @@
Begin
OutText ("Hello World!");
Outimage;
End;

13
s/smil.smil Normal file
View File

@ -0,0 +1,13 @@
<smil>
<head>
<layout>
<root-layout width="300" height="160" background-color="white"/>
<region id="text_region" left="115" top="60"/>
</layout>
</head>
<body>
<text src="data:,Hello%20World!" region="text_region">
<param name="fontFace" value="Arial"/>
</text>
</body>
</smil>

9
s/svg.svg Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg width="240" height="100" viewBox="0 0 240 100" zoomAndPan="disable"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Hello World</title>
<g>
<text x="10" y="50">Hello World</text>
<animate attributeName='opacity' values='0;1' dur='4s' fill='freeze' begin="0s"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 399 B

1
u/unicomal.lst Normal file
View File

@ -0,0 +1 @@
0100 PRINT "Hello World"

1
u/unlambda.unl Normal file
View File

@ -0,0 +1 @@
`r```````````.H.e.l.l.o. .w.o.r.l.di

6
v/vrml.wrl Normal file
View File

@ -0,0 +1,6 @@
#VRML V2.0 utf8
Shape {
geometry Text {
string "Hello World"
}
}

6
w/wml.wml Normal file
View File

@ -0,0 +1,6 @@
#define HELLOWORLD
[message]
speaker="narrator"
message=_"Hello World"
[/message]
#enddef

2
w/wsh.vbs Normal file
View File

@ -0,0 +1,2 @@
WScript.Echo "Hello World"
WScript.Quit

3
x/xbase++.prg Normal file
View File

@ -0,0 +1,3 @@
func Main()
Qout("Hello World")
return 1

53
x/xlogo.lgo Normal file
View File

@ -0,0 +1,53 @@
to HelloWorld
resetall
hideturtle
fd 20 left 180
fd 40 left 180
fd 20 right 90
fd 20 left 90
fd 20 left 180
fd 40 left 90
fd 20 left 90
fd 20 right 90
fd 20 right 90
fd 10 right 90
fd 20 left 90
fd 10 left 90
fd 30 left 90
fd 40 left 180
fd 40 left 90
fd 20 left 90
fd 40 left 180
fd 40 left 90
fd 40 left 90
fd 20 left 90
fd 20 left 90
fd 20 left 90
fd 60 left 90
fd 40 left 180
fd 40 left 90
fd 20 left 90
fd 20 left 180
fd 20 left 90
fd 20 left 90
fd 40 left 180
fd 40 left 90
fd 40 left 90
fd 20 left 90
fd 20 left 90
fd 20 left 90
fd 40 left 90
fd 20 right 90
fd 20 right 90
fd 5 left 90
fd 5 left 90
fd 25 left 180
fd 40 left 90
fd 40 left 90
fd 20 left 90
fd 20 left 90
fd 20 left 90
fd 20 left 90
fd 40 left 180
fd 40
end

2
x/xpl0.xpl Normal file
View File

@ -0,0 +1,2 @@
code Text=12;
Text(0, "Hello World")

6
x/xslt.xslt Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:text>Hello World!</xsl:text>
</xsl:template>
</xsl:stylesheet>

4
x/xul.xul Normal file
View File

@ -0,0 +1,4 @@
<?xml version="1.0"?>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<label value="Hello World"/>
</window>

1
z/zim.zim Normal file
View File

@ -0,0 +1 @@
output "Hello World"