Here are some of my favourite pointless suggestions for syntactic changes to programming languages.
Bitwise not and exclusive or
By analogy with negation and subtraction, I think the operators for not and xor should be spelled the same. I.e. instead of a ^ b write a ~ b.
Indirection
Prefix * in C is disastrous for both expression and declaration syntax. Pascal's postfix ^ for indirection is much more sensible. Fortunately the previous reform frees up ^ in C for this purpose. We can then abolish -> since it becomes superfluous.
Instead of
void (*signal(int sig, void (*func)(int)))(int);We get
void signal(int sig, void func^(int))^(int);
Associativity of relational operators
It doesn't make sense for relational operators to be associative. To specify that in a > b > c the first comparison gives a boolean result that is compared with c is utter nonsense. It's much more sensible to say that relational operators chain as in mathematical notation, so that expr relop expr relop expr ... expr relop expr is equivalent to expr relop expr and expr relop expr and ... and expr relop expr except that each expr is evaluated at most once. BCPL has this syntax except for the latter guarantee, so you can't say ’0’<=rdch()<=’9’ which is a shame.
Precedence of logical not
Logical not or ! should have precedence between logical and / && and the relational operators, so that there's much less need for an unless keyword.
Counting with for loops
The Modula (etc.) style for var = init to limit by step do ... is too wordy. The C style for (var = init; var < limit; var += step) ... is too generic and too repetitive. Lua's for var = init, limit, step do ... is way too cryptic. I quite like an idea from one of
simontatham's school friends, which fits in nicely with chained relational operators and mathematical notation. It comes in a few variants, for counting up or down, with exclusive or inclusive limits, with unity or non-unity step:
for init <= var < limit do...
for init >= var > limit do...
for init <= var <= limit do...
for init >= var >= limit do...
for init <= var < limit by step do...
for init >= var > limit by step do...
for init <= var <= limit by step do...
for init >= var >= limit by step do...
Assignment and equality
I'm a firm believer in shunning bare = as an operator, and using := for assignment and == for testing equality - at least in languages where assignment is an expression. There's much less opportunity for confusion in languages where assignment is a statement and therefore if var = expr then ... is a syntax error. Since I have a head full of Lua at the moment I will note that it has one place where assignment and equality can clash, in table constructor expressions, where the former is key/value construction and the latter is list-style construction with a boolean value.
no subject
Date: 2007-06-23 14:46 (UTC)no subject
Date: 2007-06-23 14:47 (UTC)no subject
Date: 2007-06-23 19:24 (UTC)no subject
Date: 2007-06-23 20:58 (UTC)no subject
Date: 2007-06-23 21:31 (UTC)b) You messed up the signal() declaration so that's a good sign you need a better syntax. And the fact that I can't tell you how to fix it tells me I might need one too :)
c) I don't understand why you say > is utter nonsense on boolean values. What's nonsense about it?
no subject
Date: 2007-06-23 21:45 (UTC)cdecl> explain void (*signal(int, void (*)(int)))(int);
declare signal as function (int, pointer to function (int) returning void) returning pointer to function (int) returning void
no subject
Date: 2007-06-23 22:44 (UTC)Applying comparison operators to booleans: there is one situation in which it's almost useful. If you adopt the BBC BASIC convention of having
TRUEdenoted by-1instead of+1, then the expressionA <= B, which looks to mathematicians as if it ought to be an implication, actually is one :-)As it happens, when I recently needed to design a throwaway expression grammar, I actually did write it so that comparison operators chained as you specify (including ensuring that each subexpression was only evaluated once, although since no expressions in my language have side effects that was only an efficiency consideration rather than an important semantic point). Another unusual thing I did was to give the boolean logic operators
AND,ORandXORthe same precedence but forbid distinct logical operators from associating. Soa AND b AND cis fine, and so isa OR b OR c, buta AND b OR cis a syntax error.no subject
Date: 2007-06-24 00:45 (UTC)foreach element in iterator
do
analysis(element)
done
which, of course, is the map/reduce pattern, isn't it? As long as analysis is side-effect free, anyway. I could rewrite the vast majority of it as map(analysis, iterator).
(As an aside, that's given me an idea for something I'm working on, which with hindsight should have been obvious. More of that on my work blog soon, maybe...)
It strikes me you don't actually need an arithmetic for at all: if you've got a language with lazily-evaluated iterators (like Python 2's xrange and Python 3's range), then they're just foreach over the domain of the iterator. Any good reason not to generalise that far?
Variously, though, I program in languages with no arithmetic for loop (Python), no real loops at all (XSLT), or with exactly one rather rubbish looping construct (Fortran 90's do loops), though, so I probably have a rather skewed perspective...
no subject
Date: 2007-06-24 09:13 (UTC)It's easy in infix and I believe there've been languages where teh syntax for relational exables follow closer to mathematical notation.
no subject
Date: 2007-06-24 15:28 (UTC)no subject
Date: 2007-06-24 15:39 (UTC)In Lua the for varlist in explist do loop can be used in two ways. The pure way is for the explist to evaluate to a closure that is called to generate a new list of values each time round the loop; the closure encapsulates the iterator's state. Alternatively, the explist can evaluate to a triple of function, fixed value (e.g. the table to iterate over), and initial variable value (e.g. a cursor into the data structure), so that the same function can be used to iterate over any object without having to allocate a closure to perform the loop. A little less elegance for a little more efficiency.
no subject
Date: 2007-06-25 08:09 (UTC)no subject
Date: 2007-06-25 10:55 (UTC)if x == y is True: ….