postscript


%!PS
1.00000 0.99083 scale
/Courier findfont 12 scalefont setfont
0 0 translate
/row 769 def
85 {/col 18 def 6 {col row moveto (Hello World)show /col col 90 add def}
repeat /row row 9 sub def} repeat
showpage save restore


submitted by: dan@engr.latech.edu (Danny Schales)




"Hello, World" infinitely in PostScript.
%!

/Font /Helvetica-Bold findfont def
/FontSize 12 def

Font FontSize scalefont setfont

{newpath 0 0 moveto (Hello, World!) show showpage} loop


submitted by: huggins@umich.edu (Jim Huggins)



"Hello, World" yet another version in postscript
%!PS-Adobe-3.0

/inch {72 mul} def

/Times-Roman findfont 50 scalefont setfont
2.5 inch 5 inch moveto
(Hello, World!) show

showpage


submitted by: schikore@ccad.uiowa.edu (Matt Schikore)



....and another.....
%!PS-Adobe-2.0
%%Creator: cpierce1@ford.com
%%EndComments
/mainfont /Courier findfont 12 scalefont def
mainfont setfont
%%EndProlog
%%Page: ? 1
20 763 moveto
(Hello, World!) show
showpage
%%Pages: 1


submitted by: cpierce1@ford.com (Clinton Pierce)