19 lines
277 B
Plaintext
19 lines
277 B
Plaintext
|
%Simple Postscript
|
||
|
%drawing a red sqare with a green filling
|
||
|
newpath
|
||
|
100 100 moveto
|
||
|
0 100 rlineto
|
||
|
100 0 rlineto
|
||
|
0 -100 rlineto
|
||
|
-100 0 rlineto
|
||
|
closepath
|
||
|
gsave
|
||
|
0.5 1 0.5 setrgbcolor
|
||
|
fill
|
||
|
grestore
|
||
|
1 0 0 setrgbcolor
|
||
|
4 setlinewidth
|
||
|
stroke
|
||
|
|
||
|
Here is a missing percent (comment) sign
|