TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Hints on programming language design (C.A.R Hoare)

42 pointsby ahalanover 13 years ago

3 comments

jackcviersover 13 years ago
I disagree that the paper is obsolete. References and pointers abound in nearly every popular modern programming language [C, C++, Java, C#, PHP, Python, Ruby, EcmaScript, etc.] and in fact are the defining feature of all OO languages. Operator overloading is only possible in a small fraction of popular modern programming languages. Fast compilation is not even a focus of most popular modern programming languages. Type inference and automatic coercion, declaration, and defaults are in vogue in most programming languages. Also, programming languages are increasingly large and complex. Compiler optimization is likewise a hot-spot topic, as are gotos/jumping and global and out of block variable definitions.<p>It would seem to me that if his hints and assumptions are correct that language designers may have inhibited the growth of programming; though a programmer that knows her/his language of choice can and does take advantage of all of the inefficiencies described in this paper.<p>I'm really beginning to realize that the functional languages probably have it right: single value assignment; recursive function execution; compact, readable code; monads; guards; readable case statements; and narrow interfaces seem to satisfy a lot of what he recommends. Most OO languages definitely do not, although I love the expressiveness I have learned to achieve by exploiting their nuances.
vajrabumover 13 years ago
This paper is mostly obsolete but contains this wonderful and famous comment on Algol 60: Here is a language so far ahead of its time, that it was not only an improvement on its predecessors, but also on nearly all its successors.
评论 #3242378 未加载
eddingtonover 13 years ago
Previously, 2 points...<p><a href="http://news.ycombinator.com/item?id=3207255" rel="nofollow">http://news.ycombinator.com/item?id=3207255</a>
评论 #3242120 未加载
评论 #3241880 未加载