Stories
Slash Boxes
Comments

SoylentNews is people

This discussion has been archived. No new comments can be posted.
Display Options Threshold/Breakthrough Mark All as Read Mark All as Unread
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • (Score: 1) by pTamok on Tuesday March 29 2022, @11:10AM

    by pTamok (3042) on Tuesday March 29 2022, @11:10AM (#1233190)

    As well as that problem, when you get more than 9 elements.

    Do you choose (a)

    foo("Alice",     1);
    foo("Bob",  2);
    foo("Charlie",   3);
    foo("David",     4);
    foo("Elephant",  5);
    ...
    foo("Jackana",  10);

    or (b)

    foo("Alice",     1);
    foo("Bob",  2);
    foo("Charlie",   3);
    foo("David",     4);
    foo("Elephant",  5);
    ...
    foo("Jackana",   10);

    And what does your text editor choose?