Do you prefer verbose or shorthand languages - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T01:32:24Z http://stackoverflow.com/feeds/question/274475 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/274475/do-you-prefer-verbose-or-shorthand-languages 3 Do you prefer verbose or shorthand languages Nathan W 2008-11-08T07:00:00Z 2008-11-10T17:38:56Z <p>As the title of this post states. Would you prefer to use a language that is verbose or more shorthand? So would you prefer this:</p> <pre><code>Dim myvar as string = "hello world" </code></pre> <p>or this</p> <pre><code>string myvar = "hello world" </code></pre> <p>I know I just compared C# to VB but you get my drift, another example would be powershell where you can use the % sign to mean foreach(I'm pretty sure thats right I havn't use PS in a while). </p> <p>Personally I find VB more easier to write but I would rather read someone elses C# code, mainly because of its shorthand notation I found it easier to see what the person is trying to do.</p> <p>What about you?</p> http://stackoverflow.com/questions/274475/do-you-prefer-verbose-or-shorthand-languages/274483#274483 3 Answer by CMS for Do you prefer verbose or shorthand languages CMS 2008-11-08T07:06:44Z 2008-11-08T07:06:44Z <p>I like to write shorthand but readable and maintainable code.</p> <p>Check this great article: <a href="http://www.codinghorror.com/blog/archives/000878.html" rel="nofollow">The Best Code is No Code At All</a></p> http://stackoverflow.com/questions/274475/do-you-prefer-verbose-or-shorthand-languages/274488#274488 0 Answer by Mitchel Sellers for Do you prefer verbose or shorthand languages Mitchel Sellers 2008-11-08T07:15:05Z 2008-11-08T07:15:05Z <p>I have to say that I personally fall into the exact example you gave. I stared out in VB, its verbose language was great for starting with, but now that I have started using C# and Java, VB seems to just take too darn long to code the items I need, too much typing, not enough coding!</p> http://stackoverflow.com/questions/274475/do-you-prefer-verbose-or-shorthand-languages/274495#274495 3 Answer by Robert Gould for Do you prefer verbose or shorthand languages Robert Gould 2008-11-08T07:25:18Z 2008-11-08T07:25:18Z <p>I prefer:</p> <pre><code>MyString = "a string" </code></pre> <p>Many languages support this.</p> http://stackoverflow.com/questions/274475/do-you-prefer-verbose-or-shorthand-languages/274502#274502 6 Answer by Chris Charabaruk for Do you prefer verbose or shorthand languages Chris Charabaruk 2008-11-08T07:35:20Z 2008-11-08T07:35:20Z <p>Code (and any writing!) should be as short it can be without losing readability.</p> <ul> <li>Languages which force a lot of lingual cruft on the programmer are the antithesis of good programming, because all the added verbosity causes readability to be highly diminished, therefore disguising the activities performed by said code.</li> <li>Languages which use more keywords to do the same as another language lead to poor programming, because it becomes harder to read and comprehend what the code does.</li> </ul> <p>Those two points say the same thing. You tell me which is easier to read and understand. :-)</p> http://stackoverflow.com/questions/274475/do-you-prefer-verbose-or-shorthand-languages/274505#274505 2 Answer by Atomiton for Do you prefer verbose or shorthand languages Atomiton 2008-11-08T07:48:21Z 2008-11-08T07:48:21Z <p>You want shorthand? Try Ruby!</p> <p>I love <a href="http://strand3.com/blog/2008/10/14/i-like-me-some-ruby-syntactical-sugar/" rel="nofollow">this post on time functions</a> in Ruby and since no class is sealed, you basically have extension method functionality built in.</p> <p>How's this for concise readable code:</p> <pre><code>Time.now # =&gt; Tue Oct 14 22:48:27 -0500 2008 3.hours.ago # =&gt; Mon Oct 13 19:48:27 -0500 2008 1.week.ago # =&gt; Tue Oct 07 22:48:27 -0500 2008 </code></pre> http://stackoverflow.com/questions/274475/do-you-prefer-verbose-or-shorthand-languages/274516#274516 3 Answer by Jon Skeet for Do you prefer verbose or shorthand languages Jon Skeet 2008-11-08T08:13:07Z 2008-11-08T08:13:07Z <p>I like languages which allow you to vary how concise you are. For instance, in C# when it's already clear what a local variable's type will be based on assignment, I can use implicit typing:</p> <pre><code>var names = new List&lt;string&gt;(); </code></pre> <p>Where it's clearer to make it explicit, however, I can do so:</p> <pre><code>List&lt;string&gt; names = new List&lt;string&gt;(); </code></pre> <p>The same is true for various aspects of the language - type inference for generic methods, lambda expressions, delegate instance creation expressions, object initializers etc, using a query expression vs "normal" method calls, etc.</p> <p>There aren't always "shortcuts" for <em>everything</em> I'd like, but you get the general idea. Having this flexibility allows you to write readable code whatever the situation - because <em>sometimes</em> the most readable code is the shortest, and sometimes extra (redundant) information makes it clearer.</p> http://stackoverflow.com/questions/274475/do-you-prefer-verbose-or-shorthand-languages/274547#274547 5 Answer by Artelius for Do you prefer verbose or shorthand languages Artelius 2008-11-08T09:20:23Z 2008-11-08T09:20:23Z <p>I don't see a real difference between the two examples you provided.</p> <p>What percentage of your programming time do you spend actually typing code? I expect 5% is an overestimate. When you take into account thinking time, testing, bug-hunting, consulting references, and in some cases, <a href="http://xkcd.com/303/" rel="nofollow">compiling</a>, you see that saving a few characters don't make a tremendous difference. Especially if they're easy-to reach characters (alphabetic ones).</p> <p>When it comes to actually <em>reading</em> code, extra characters don't consume much extra time at all. In fact, we've had a lot of practice reading English (many of us, anyway) and extra words can actually <em>help</em> us make sense of what we're looking at.</p> <p>One of the reasons that BASIC has refused to die is that it takes so little effort to read. Compare these two:</p> <pre><code>For x = 1 To 10 Step 2 for(x=1; x&lt;11; x+=2) </code></pre> <p>My point is that on the "micro" scale, when it comes to individual keywords and syntax, minor changes aren't going to make a big difference, and blindly trying to save characters is a bad idea.</p> <p>It's the macro scale that counts. How many <em>lines</em> it takes to do something. How many functions you have to invent to do something, how much thought needs to go in something (worrying about array bounds, or empty strings, or simply solving problems that the language could solve for you). Languages that have <em>this</em> sort of "shorthand" are better.</p> http://stackoverflow.com/questions/274475/do-you-prefer-verbose-or-shorthand-languages/274569#274569 0 Answer by PhiLho for Do you prefer verbose or shorthand languages PhiLho 2008-11-08T09:46:24Z 2008-11-08T09:46:24Z <p>I used to admire APL (super-concise language with lot of special symbols) and C for its shortcuts like doing an action and testing at the same time, like the well known <code>while (p++ = q++);</code>. And to despise Cobol (old style) for its super-verbosity (like <code>add b to c giving a</code> or similar).</p> <p>Now, some years later, after having read and corrected lot of code (mine and other's), I take highly readability over conciseness and astute tricks that takes hours to understand... I favor explicit variable and function names, splitting long lines in several instructions (even it is creates short lived local variables: it can help debugging anyway), etc.</p> <p>Some languages can be super verbose without good effect (somehow, Java falls in this trap).<br /> Some languages can use English words in place of symbols without being verbose (Lua using then/do/end instead of {} -- some people are disturbed by that, I find this readable and not so long).<br /> Beside, most modern IDEs and good editors have auto-completion and templates, reducing typing, so it doesn't really matter.</p> <p>It is a question of taste and habits, but somehow I now tend to favor languages I can understand without first reading a big manual to those with special, convoluted notation.</p> <p>Now, it can go beyond that: some languages have some nice, original concepts worth studying, and that's independent of syntax.</p> http://stackoverflow.com/questions/274475/do-you-prefer-verbose-or-shorthand-languages/274572#274572 1 Answer by GeekyMonkey for Do you prefer verbose or shorthand languages GeekyMonkey 2008-11-08T09:56:01Z 2008-11-08T09:56:01Z <p>Short code is quicker to scan over and understand what its intentions are quickly.</p> http://stackoverflow.com/questions/274475/do-you-prefer-verbose-or-shorthand-languages/274625#274625 2 Answer by Edward Kmett for Do you prefer verbose or shorthand languages Edward Kmett 2008-11-08T11:09:48Z 2008-11-08T11:09:48Z <p>Conciseness is a virtue, within reason.</p> <p>I write a lot of my code in <a href="http://www.haskell.org/" rel="nofollow">Haskell</a> where you can get an amazing amount of punch out of a line or two.</p> <p>I'm not crazy enough to try and go all the way down to something write-only like <a href="http://en.wikipedia.org/wiki/J_(programming_language)" rel="nofollow">J</a>, however, because it becomes an exercise in mental masturbation; no one else can read the code when you're done and there are no decent libraries.</p> <p>Steve Yegge had a good rant on one of the distinguishing characteristics about newer and older programmers, and that is a 'tolerance for code compression'. While his points are usually somewhat overstated, this one I happen to agree with.</p> <p><a href="http://steve-yegge.blogspot.com/2008/02/portrait-of-n00b.html" rel="nofollow">http://steve-yegge.blogspot.com/2008/02/portrait-of-n00b.html</a></p> http://stackoverflow.com/questions/274475/do-you-prefer-verbose-or-shorthand-languages/274746#274746 2 Answer by dsimcha for Do you prefer verbose or shorthand languages dsimcha 2008-11-08T14:03:16Z 2008-11-08T14:03:16Z <p>More concise is better, up to a point. I find Java code very hard to read because it is <em>so</em> verbose that the high-level purpose of it gets lost in a bunch of superfluous verbosity. On the other hand, Perl is concise to the point of being cryptic.</p> <p>I think the general rule here should be that a language should be as concise as possible without relying on special-case shortcuts to save a little typing here and there. As a language designer, once you hit the point where you're making the language substantially more complex just to save people a little typing, that's about the time to stop trying to be more concise.</p> http://stackoverflow.com/questions/274475/do-you-prefer-verbose-or-shorthand-languages/278602#278602 0 Answer by Atomiton for Do you prefer verbose or shorthand languages Atomiton 2008-11-10T17:38:56Z 2008-11-10T17:38:56Z <p>I'm starting to love Ruby syntax</p> <pre><code>def say_hi_to(persons) persons.each do |person| puts "Hello #{person}!" end end say_hi_to(persons) </code></pre>