RosettaCodeData/Task/Arithmetic-Integer/PostScript/arithmetic-integer.ps

11 lines
131 B
PostScript
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
/arithInteger {
/x exch def
/y exch def
x y add =
x y sub =
x y mul =
x y idiv =
x y mod =
x y exp =
} def