Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Using Mathematica, I was trying to get {#1,#2,#3,#4,#5}, using Table[#n, {n, 1, 5}] Instead I only got {#n, #n, #n, #n, #n} How can I get {#1,#2,#3,#4,#5},
$\begingroup$You have been a member for several years now. I note that you don't format your posts correctly and haven't been accepting any answers for a while now. Your participation is important.$\endgroup$
Table[Slot[i], {i, 5}]$\endgroup$Table, useSlot /@ Range[5]$\endgroup$