12 lines
272 B
Text
12 lines
272 B
Text
|
|
labels =: ];.2 'Sum: Difference: Product: Quotient: Remainder: Exponentiation: '
|
||
|
|
combine =: ,. ":@,.
|
||
|
|
bia =: labels combine calc
|
||
|
|
|
||
|
|
17 bia 3
|
||
|
|
Sum: 20
|
||
|
|
Difference: 14
|
||
|
|
Product: 51
|
||
|
|
Quotient: 5
|
||
|
|
Remainder: 2
|
||
|
|
Exponentiation: 4913
|