RosettaCodeData/Task/Arithmetic-Integer/APL/arithmetic-integer.apl

6 lines
162 B
APL
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
res integer_arithmetic; l; r
l
r
res 6 2 'sum' (l+r) 'diff' (l-r) 'prod' (l×r) 'quot' (l÷r) 'rem' (r|l) 'pow' (l*r)