Related articles |
---|
[7 earlier articles] |
Re: What attributes of a programming language simplify its use? gah4@u.washington.edu (gah4) (2022-12-06) |
Re: What attributes of a programming language simplify its use? anton@mips.complang.tuwien.ac.at (2022-12-07) |
Re: What attributes of a programming language simplify its use? DrDiettrich1@netscape.net (Hans-Peter Diettrich) (2022-12-07) |
Re: What attributes of a programming language simplify its use? Keith.S.Thompson+u@gmail.com (Keith Thompson) (2022-12-07) |
Re: What attributes of a programming language simplify its use? DrDiettrich1@netscape.net (Hans-Peter Diettrich) (2022-12-08) |
Re: What attributes of a programming language simplify its use? gah4@u.washington.edu (gah4) (2022-12-08) |
Re: What attributes of a programming language simplify its use? gah4@u.washington.edu (gah4) (2022-12-12) |
From: | gah4 <gah4@u.washington.edu> |
Newsgroups: | comp.compilers |
Date: | Mon, 12 Dec 2022 00:00:56 -0800 (PST) |
Organization: | Compilers Central |
References: | 22-12-001 22-12-003 22-12-004 22-12-007 |
Injection-Info: | gal.iecc.com; posting-host="news.iecc.com:2001:470:1f07:1126:0:676f:7373:6970"; logging-data="32013"; mail-complaints-to="abuse@iecc.com" |
Keywords: | syntax, design, comment |
Posted-Date: | 12 Dec 2022 11:49:11 EST |
In-Reply-To: | 22-12-007 |
On Tuesday, December 6, 2022 at 10:28:44 AM UTC-8, Keith Thompson wrote:
(big snip)
> (I'm not arguing that C's integer type system isn't overly complicated.)
One reason for that, as noted above, is reserved words.
Adding new reserved words risks invalidating existing programs.
I do notice that Java has a reserved word "goto" without a defined use.
Someone was planning ahead.
C could have reserved some words for future use, if someone thought about it.
So adding new types is complicated.
[I think this is where you use #pragma to say which new keywords you're
using. Yes, it's a kludge. -John]
Return to the
comp.compilers page.
Search the
comp.compilers archives again.