RosettaCodeData/Task/Logical-operations/PostScript/logical-operations.ps
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

7 lines
66 B
PostScript

/logical{
/a exch def
/b exch def
a b and =
a b or =
a not =
}def