11 lines
204 B
PostScript
11 lines
204 B
PostScript
% 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 |