syntax idea: simplifed ifs

Alexander Panek alexander.panek at brainsware.org
Sat Apr 15 03:09:17 PDT 2006


Dan wrote:
> In ECMAScript itself, you can write code like:
> 
> a && a.doSomething();
> or
> a = a || defaultValue;
> 
> It feels so much better than:
> 
> if(a) a.doSomething();
> if(!a) a = defaultValue;
> 
> Maybe because it doesn't need indentation.  Maybe because it falsely makes me
> feel better about branching.  Maybe it's 'cause logicals are just sexy.
> 
> 

[code]
import std.stdio;

int main ( char [][] args )
{
	uint a = 10;
	uint b = 0;

	b |= a;
	writefln(b);
	a |= b;
	writefln(a);

	return 0;
}
[/code]

Output:
:!./test
10
10

Works quite fine for me.



More information about the Digitalmars-d mailing list