So if I was doing this pseudo-code high level it would be: for i from 0 to n-1: y[i] := x[i] * x[i]
What would it be in low level pseudo-code?
I've written the high level pseudo-code but I know you can't use 'for' loops in low level pseudo-code, so I'm just wondering how it would be?