How do I combine lists horizontally

Does anyone know how to clone a list horizontally so

List:

1
2
3
4
5
6
7
8
9
10

Turns into:

1|1|1|1
2|2|2|2
3|3|3|3
4|4|4|4
5|5|5|5
6|6|6|6
7|7|7|7
8|8|8|8
9|9|9|9
10|10|10|1

And not:

1|2|3|4|5|6|7|8|9|10
1|2|3|4|5|6|7|8|9|10
1|2|3|4|5|6|7|8|9|10
1|2|3|4|5|6|7|8|9|10

Because it doesn’t appear as a single column when I export the file

You can do what you did to get the last list, but then use columns of (an option in the length of block) to turn it to the second list.

what @ego-lay_atman-bay means is this:

of course, you can also use map for ... just about everything. It's the single most powerful block in all of Snap!:

Thx, I prefer the columns just because my finger is too big and takes too long to extend a list to 4 spaces, I have the page size set to 50% because everything at the bottom right is either missing or cut off

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.