Revert "github generated gh-pages branch"

This reverts commit 97e0e510b5.
This commit is contained in:
Robert Peters
2011-03-13 20:36:14 +01:00
parent 97e0e510b5
commit 7f878aa890
181 changed files with 1096 additions and 88 deletions

4
x/.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
*.swp*
*tmp*
*swp*
*~

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/xml.xml Normal file
View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<text><![CDATA[Hello World]]></text>

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>