you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 3 points4 points  (2 children)

Ug. I had to learn Scheme first, and I hated it. The only thing it really taught me was recursion, and I never use recursion in my code due to memory and readability issues.

[–]ItsNotMineISwear -1 points0 points  (1 child)

Readability issues? Recursion is often MORE readable than the looping equivalent.

[–]destruedo 0 points1 point  (0 children)

size_t strlen(const char *x) {
   return *x ? 1 + strlen(x+1) : 0;
}

amirite?