-
How does (first”) works?
dict:`a`b`c!((enlist 1; enlist `a);(enlist 2;enlist `b);(enlist 3;enlist `c))
q)(first”) dict
a| 1 `a
b| 2 `b
c| 3 `c
q)(first’) dict
a| 1
b| 2
c| 3
q)How does (first”) work, please? And then how would (first”’) work?
Thank you!
Log in to reply.