Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re:Powershell (Score 1) 729

strings terminated by a binary zero rather than their physical size. Who the hell thought that would be a good idea?

One advantage to null-terminated strings is that there's typical only one format - well one for each character type at least. For length encoded strings, the format depends on the register size, and the endianness of the platform. Of course C does not enforce the use of zero-terminated strings. Not even for string literals.

Comment Re:Actionscript Scoping (Score 1) 729

for (int i = 0; i < 10; ++i) { something(); }

I remember when some compilers would treat this like:

int i; for (i = 0; i < 10; ++i) { something(); }

and others like this:

{ for (int i = 0; i < 10; ++i) something(); }

As the standard, for whatever reason, decide to change it. So much for not breaking existing code.

Comment Re:Foolish (Score 1) 358

I am not saying we will find FTL travel method - but they are assuming we won't which is foolish.

There's a lot of evidence we won't. We would have found it by now if someone has discovered it in the future.

Comment Re:Meh (Score 1) 435

I think garbage collection is a library issue, not something that should be in the core language by default.

I'd like to see runtime reflection with the proviso that it's static. It's my thinking that reflection should be compile-time for a compiled language.

Slashdot Top Deals

The rule on staying alive as a forecaster is to give 'em a number or give 'em a date, but never give 'em both at once. -- Jane Bryant Quinn

Working...