-
Basic (but still intriguing to me) q Interpreter question
A bit at lost here… Can someone enlighten me as to how the interpreter works in the following situation:
q)show a:10?(-1 0 1) //Just to have something
0 1 1 0 -1 0 1 -1 0 0q)(>)a //That’s the curiosity
1 2 6 0 3 5 8 9 4 7I understand this is actually the same as…
q)raze where each a=/:desc distinct a
1 2 6 0 3 5 8 9 4 7but… can’t figure out where this is coming from(!)
Thx in advance
Log in to reply.