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:
committed by
Mike Donaghy
parent
0661854566
commit
2a5b239357
3
i/icon.icn
Normal file
3
i/icon.icn
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
procedure main()
|
||||||
|
write("Hello World");
|
||||||
|
end
|
||||||
5
j/jade.jade
Normal file
5
j/jade.jade
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
helloWorld();
|
||||||
|
|
||||||
|
begin
|
||||||
|
write "Hello World";
|
||||||
|
end;
|
||||||
2
j/jason.mas2j
Normal file
2
j/jason.mas2j
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
!greeting.
|
||||||
|
+!greeting : true <- .print("Hello World").
|
||||||
1
j/jess.cpl
Normal file
1
j/jess.cpl
Normal file
@@ -0,0 +1 @@
|
|||||||
|
(printout t "Hello World")
|
||||||
7
l/lsl.lsl
Normal file
7
l/lsl.lsl
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
default
|
||||||
|
{
|
||||||
|
state_entry()
|
||||||
|
{
|
||||||
|
llSay(0, "Hello World");
|
||||||
|
}
|
||||||
|
}
|
||||||
4
m/mel.mel
Normal file
4
m/mel.mel
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
proc helloWorld () {
|
||||||
|
print "Hello World\n";
|
||||||
|
}
|
||||||
|
helloWorld;
|
||||||
1
q/QuakeC.qc
Normal file
1
q/QuakeC.qc
Normal file
@@ -0,0 +1 @@
|
|||||||
|
bprint("Hello World\n");
|
||||||
13
q/qore.q
Executable file
13
q/qore.q
Executable 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
4
s/simula.sim
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
Begin
|
||||||
|
OutText ("Hello World!");
|
||||||
|
Outimage;
|
||||||
|
End;
|
||||||
13
s/smil.smil
Normal file
13
s/smil.smil
Normal 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
9
s/svg.svg
Normal 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
1
u/unicomal.lst
Normal file
@@ -0,0 +1 @@
|
|||||||
|
0100 PRINT "Hello World"
|
||||||
1
u/unlambda.unl
Normal file
1
u/unlambda.unl
Normal file
@@ -0,0 +1 @@
|
|||||||
|
`r```````````.H.e.l.l.o. .w.o.r.l.di
|
||||||
6
v/vrml.wrl
Normal file
6
v/vrml.wrl
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#VRML V2.0 utf8
|
||||||
|
Shape {
|
||||||
|
geometry Text {
|
||||||
|
string "Hello World"
|
||||||
|
}
|
||||||
|
}
|
||||||
6
w/wml.wml
Normal file
6
w/wml.wml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#define HELLOWORLD
|
||||||
|
[message]
|
||||||
|
speaker="narrator"
|
||||||
|
message=_"Hello World"
|
||||||
|
[/message]
|
||||||
|
#enddef
|
||||||
3
x/xbase++.prg
Normal file
3
x/xbase++.prg
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
func Main()
|
||||||
|
Qout("Hello World")
|
||||||
|
return 1
|
||||||
53
x/xlogo.lgo
Normal file
53
x/xlogo.lgo
Normal 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
2
x/xpl0.xpl
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
code Text=12;
|
||||||
|
Text(0, "Hello World")
|
||||||
6
x/xslt.xslt
Normal file
6
x/xslt.xslt
Normal 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
4
x/xul.xul
Normal 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>
|
||||||
Reference in New Issue
Block a user