Re: Record for Most Subscripts
- Posted by Critic Jul 23, 2009
- 755 views
euphoric said...
Actual working code from a program I'm developing:
f = find(stacks[t][2][x][2][y][z][2],faces[1]) s = find(stacks[t][2][x][2][y][z][1],suits[1])
Eventually I'll write helper code for better management of the stack sequence, or use maps.
But WOW! I don't think I've ever gone that deep. It's a record!
You could at least do this:
object whatever whatever = stacks[t][2][x][2][y][z] f = find(whatever[2],faces[1]) s = find(whatever[1],suits[1])
But this really is pretty advanced stuff. Derek did not know about this either.