9 lines
186 B
PostScript
9 lines
186 B
PostScript
|
|
%!PS
|
||
|
|
/Helvetica 20 selectfont
|
||
|
|
70 700 moveto
|
||
|
|
(Hello world!) dup dup dup
|
||
|
|
= print == % prints three times to the console
|
||
|
|
show % prints to document
|
||
|
|
1 0 div % provokes error message
|
||
|
|
showpage
|