Categorize files based on the first letter

This commit is contained in:
Kevin Ballard
2008-07-25 17:52:05 -07:00
parent bb19ce29ab
commit a360b77ed3
60 changed files with 0 additions and 0 deletions

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");
?>

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"