APL step-by-step

APL:

Result

Symbols

Environment

(no variables have been assigned)

Examples

add two numbers
2 + 2
addition over array
2 + 1 2 3
sum array and add
+/⍳4 + 2
assign a variable
x ← 1 2 3
evaluate a variable
x + 2
deal add reduce range add
2 ? 1 2 3 + +/⍳2 + 2