Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-design

Why are const parameters not allowed in C#?

Why is Multiple Inheritance not allowed in Java or C#?

Why are C# 3.0 object initializer constructor parentheses optional?

Why does C# disallow readonly local variables? [closed]

Conventions for exceptions or error codes [closed]

Why doesn't String switch statement support a null case?

Why doesn't Ruby support i++ or i--​ (increment/decrement operators)?

Why are C++ inline functions in the header?

Why does Ruby have both private and protected methods?

Why do local variables require initialization, but fields do not?

Why was the switch statement designed to need a break?

c language-design

Why can't variable names start with numbers?

Why are private fields private to the type, not the instance?

Why aren't variables declared in "try" in scope in "catch" or "finally"?

Why is there "data" and "newtype" in Haskell? [duplicate]

Why doesn't Java allow generic subclasses of Throwable?

Why does Lua have no "continue" statement?

loops lua language-design

Why was the statement (j++); forbidden?

Why doesn't a python dict.update() return the object?

What does void mean in C, C++, and C#?