RosettaCodeData/Task/Logical-operations/PostScript/logical-operations.ps

8 lines
66 B
PostScript
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
/logical{
/a exch def
/b exch def
a b and =
a b or =
a not =
}def