Re: Record for Most Subscripts

new topic     » goto parent     » topic index » view thread      » older message » newer message
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! smile

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.

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu