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
p/.gitignore vendored Normal file
View File

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

4
p/pascal.p Normal file
View File

@@ -0,0 +1,4 @@
program HelloWorld(output);
begin
writeln('Hello World')
end

2
p/perl.pl Normal file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/perl
print "Hello World\n";

3
p/php.php Normal file
View File

@@ -0,0 +1,3 @@
<?php
print("Hello World");
?>

5
p/pike.pike Normal file
View File

@@ -0,0 +1,5 @@
// Hello world in Pike (pike.roxen.com)
int main(){
write("Hello World!\n");
}

5
p/pizza.pizza Normal file
View File

@@ -0,0 +1,5 @@
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}

1
p/pluvo.pvo Normal file
View File

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

1
p/postgresql.sql Normal file
View File

@@ -0,0 +1 @@
SELECT 'Hello World' as hello_message;

2
p/postscript.ps Normal file
View File

@@ -0,0 +1,2 @@
% run> gs -q -sDEVICE=nullpage postscript.ps
(Hello world!\n) print quit

11
p/postscript_page.ps Normal file
View File

@@ -0,0 +1,11 @@
% run> gs -q postscript_page.ps
/pt {72 div} def
/y 9 def
/textdraw {/Courier findfont 12 pt scalefont setfont 8 pt y moveto show} def
72 72 scale
0 0 0 setrgbcolor
(Hello world!) textdraw
showpage
quit

1
p/prolog.pro Normal file
View File

@@ -0,0 +1 @@
write('Hello World').

2
p/python.py Normal file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/env python
print "Hello World"

2
p/python3.py Normal file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/env python
print("Hello World")