https://learninghub.kx.com/forums/topic/how-does-first-works
dict:a
bc!((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!