Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror

Comment Re: Wait... (Score 1) 96

Plain old socialism doesn't seem to work too badly, but it fails so often when the leaders turn it into communism, and most do. Scandinavian countries are doing a pretty good job. Job. But that's not really the left, is it? The fos comments are just ad hominem attacks again, aren't they? Of course some people are full of it, but I have history on my side. And don't forget, it was the Nazis who defunded the police so that they could do what they wanted to do. More left. Naziism is not right Wing no matter how they try to tell you differently.

Comment Re:And replace them with what? (Score 1) 29

Addendum

I'd prefer "req" over "required" as it would be used often: frequent tokens/idioms should be short. And "str" instead of "string".

One could put ranges and other decorations, perhaps custom ones:

var x:num.range(0, 99.99);
var s:str.maxLen(12);
var s:maxLen(120); // shorter version of above, strings don't need explicit types.
var u; // untyped, but treated as string by default
var foo=7; // automatically "int" based on constant.
var fi=7.0; // automatically num (decimal*)

(Variable declarations and parameter declarations use similar conventions)

* Treated as decimal by default, but big exponents will automatically bump its storage from 16 bits to 64 bits.

Slashdot Top Deals

Never trust an operating system.

Working...