Programming language questions - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T02:24:15Zhttp://stackoverflow.com/feeds/question/291164http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/291164/programming-language-questions-1Programming language questionspro3carp3http://stackoverflow.com/users/78992008-11-14T19:50:17Z2009-11-12T14:22:47Z
<p>To assist with a project I'm working on, I request your input to the following questions. I'm looking for your thoughts regarding programming language syntax and built-in capabilities, NOT about available frameworks and libraries.</p>
<p>(1) In the different programming languages you use, what langauge features do you think are lacking?</p>
<p>(2) What language features that are available in one language do you wish were available in another?</p>
<p>(3) What are the undesirable limitations of the langauge that annoy you?</p>
<p>(4) What capabilities could be improved with better syntax, and how would you change it?</p>
<p>I'm grateful for any input you would provide. Thanks.</p>
http://stackoverflow.com/questions/291164/programming-language-questions/291176#2911760Answer by Greg Hewgill for Programming language questionsGreg Hewgillhttp://stackoverflow.com/users/8932008-11-14T19:52:22Z2008-11-14T19:52:22Z<p>Answers to this question for a variety of languages are pretty well covered in this question: <a href="http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language">http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language</a></p>
http://stackoverflow.com/questions/291164/programming-language-questions/1722520#17225200Answer by Earlz for Programming language questionsEarlzhttp://stackoverflow.com/users/697422009-11-12T14:22:20Z2009-11-12T14:22:20Z<ol>
<li><p>I've yet to really find something lacking in Ruby(my favorite language) except for maybe being able to distinguish between methods and properties. But in C# There is how you must cast almost everything! And the casts make the code look extremely ugly. Also, if <code>yield</code> was available for more stuff than just foreach, then it would be much more handy. Also in the foreach looping, why did microsoft not build in a <code>break next</code> or something to that extent? I won't even go into the obvious things that should exist but don't in C</p></li>
<li><p>I wish more of the functional aspects of Ruby were available in C#(such as a general purpose <code>yield</code>.</p></li>
<li><p>umm.. don't get the question.</p></li>
<li><p>In C#, <code>[attributes]</code> really suck for syntax. It makes it instantly ugly. I'm not sure how I would change it, but it wouldn't stick out so much if I changed it</p></li>
</ol>