| ▲ | MiroslavPokorny an hour ago | |
What i dont understand is why does everything have to be so brief. Take car and cdr there is only one character difference, more character differences is a good thing not bad. | ||
| ▲ | gumby 29 minutes ago | parent | next [-] | |
More short names fit in your fovea than long names so for the most common operations they are the easiest to read. It’s the same reason the most common words in human languages are the shortest (and programming languages are for humans to use so subject to the same pressure. Also, Back In The Old Days memory was very expensive and precious so short identifiers were important. Often labels were tightly constrained, for example being limited to six upper-case characters so they would fit in a single word. | ||
| ▲ | Sharlin 28 minutes ago | parent | prev | next [-] | |
The usual convention (which also occurs in natural languages) is that often-used words should be short, rarely used should (and can afford to be) more descriptive. | ||
| ▲ | thaumasiotes 35 minutes ago | parent | prev [-] | |
> What i dont understand is why does everything have to be so brief. The concept is to make things easier for people who are familiar with the language. Making things harder for that group is always counterproductive, because they are the only people who can do any useful work. | ||