Add a range command similar to (and using) python's range
Allows the following syntax:
val = i | range 7
Resulting into:
val = i0, i1, i2, i3, i4, i5, i6
This can then again be splitted. I need this for a project.
Edited by Dominic Kempf
Allows the following syntax:
val = i | range 7
Resulting into:
val = i0, i1, i2, i3, i4, i5, i6
This can then again be splitted. I need this for a project.