Revert "github generated gh-pages branch"
This reverts commit 97e0e510b5.
This commit is contained in:
4
p/.gitignore
vendored
Normal file
4
p/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
*.swp*
|
||||
*tmp*
|
||||
*swp*
|
||||
*~
|
||||
4
p/pascal.p
Normal file
4
p/pascal.p
Normal file
@@ -0,0 +1,4 @@
|
||||
program HelloWorld(output);
|
||||
begin
|
||||
writeln('Hello World')
|
||||
end
|
||||
5
p/pike.pike
Normal file
5
p/pike.pike
Normal file
@@ -0,0 +1,5 @@
|
||||
// Hello world in Pike (pike.roxen.com)
|
||||
|
||||
int main(){
|
||||
write("Hello World!\n");
|
||||
}
|
||||
5
p/pizza.pizza
Normal file
5
p/pizza.pizza
Normal file
@@ -0,0 +1,5 @@
|
||||
class HelloWorld {
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello World");
|
||||
}
|
||||
}
|
||||
1
p/pluvo.pvo
Normal file
1
p/pluvo.pvo
Normal file
@@ -0,0 +1 @@
|
||||
say "Hello World"
|
||||
1
p/postgresql.sql
Normal file
1
p/postgresql.sql
Normal file
@@ -0,0 +1 @@
|
||||
SELECT 'Hello World' as hello_message;
|
||||
2
p/postscript.ps
Normal file
2
p/postscript.ps
Normal file
@@ -0,0 +1,2 @@
|
||||
% run> gs -q -sDEVICE=nullpage postscript.ps
|
||||
(Hello world!\n) print quit
|
||||
11
p/postscript_page.ps
Normal file
11
p/postscript_page.ps
Normal 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
1
p/prolog.pro
Normal file
@@ -0,0 +1 @@
|
||||
write('Hello World').
|
||||
2
p/python.py
Normal file
2
p/python.py
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env python
|
||||
print "Hello World"
|
||||
2
p/python3.py
Normal file
2
p/python3.py
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env python
|
||||
print("Hello World")
|
||||
Reference in New Issue
Block a user