Here is just running the result in the language Julia which has many APLish ideas. Julia has a REPL (read, execute, print and loop) giving it the interactive feel of the APL session. It also can show you the code that it emits when it create a function. Again - it is just interesting to me...
julia> f(x) = sum(x.^3)
f (generic function with 1 method)
julia> x = (8866128975287528, -8778405442862239, -2736111468807040)
(8866128975287528, -8778405442862239, -2736111468807040)
julia> f(x)
33
julia> @code_native f(x)
.text
; ┌ @ REPL[1]:1 within `f'
; │┌ @ broadcast.jl:753 within `materialize'
; ││┌ @ broadcast.jl:953 within `copy'
; │││┌ @ tuple.jl:161 within `ntuple'
; ││││┌ @ broadcast.jl:953 within `#19'
; │││││┌ @ broadcast.jl:551 within `_broadcast_getindex'
; ││││││┌ @ broadcast.jl:578 within `_broadcast_getindex_evalf'
; │││││││┌ @ intfuncs.jl:244 within `literal_pow'
; ││││││││┌ @ operators.jl:502 within `*' @ REPL[1]:1
movq (%rdi), %rax
movq %rax, %rcx
imulq %rcx, %rcx
imulq %rax, %rcx
vmovdqu 8(%rdi), %xmm0
vpmullq %xmm0, %xmm0, %xmm1
vpmullq %xmm0, %xmm1, %xmm0
; │└└└└└└└└
; │┌ @ tuple.jl:395 within `sum'
; ││┌ @ operators.jl:502 within `+' @ int.jl:53
vmovq %xmm0, %rdx
addq %rcx, %rdx
vpextrq $1, %xmm0, %rax
addq %rdx, %rax
; │└└
retq
nopw %cs:(%rax,%rax)
; └