<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:osnews="http://www.osnews.com/rss2#">
	<channel>
		<title>OSNews: </title>
		<link>http://www.osnews.com/story/22478/Google_Creates_New_Open_Source_Programming_Language</link>
		<description>Exploring the Future of Computing</description>
		<language>en-us</language>
		<copyright>Copyright 2001-2013, David Adams</copyright>
		<webMaster>adam+nospam@osnews.com</webMaster>
		<lastBuildDate>Wed, 19 Jun 2013 22:17:57 GMT</lastBuildDate>
		<image>
			<url>http://www.osnews.com/images/osnews.gif</url>
			<title>OSNews.com</title>
			<link>http://www.osnews.com</link>
		</image>
		<item>
			<title>Dirty?</title>
			<link>http://www.osnews.com/thread?393999</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?393999</guid>
			<description>I've read some docs on it and it seems very dirty to me. To elaborate, too many things are implicit and there are many built-in global functions (like len(), for example).<br />
<br />
Having built-in functions reminds me of the days of Pascal.<br />
<br />
Now, I said that too many things are implicit and here is an example of this: Any type, variable, constant of function of a package is public if and only if its name starts with an Uppercase letter.<br />
<br />
Also, some things are not logical to me. For example:<br />
<div class="cquote">import (&quot;fmt&quot;, &quot;os&quot;) </div><br />
Why not just<br />
<div class="cquote">import fmt, os </div><br />
<br />
Functions can return more than one value (which is cool) like this:<br />
<div class="cquote">func foo(i int) (a, b int) {} </div><br />
A function that returns only one value looks like this:<br />
<div class="cquote">func bar(i int) int {} </div><br />
So, I ask, why do we need parentheses when returning more values? Why can't we just write this:<br />
<div class="cquote">func foo(i int) a, b int {} </div><br />
<br />
Now, I don't want to be all critical. There are some good aspects of the language and some interesting ideas. Those implicit things I mentioned have an up side as well. Once you know the language well, I guess you can write code very fast.<br />
Also, the Go code compiles very fast. It's worth noting that it is a compiled language like C and yet it features many things from languages like Java, namely Garbage Collection and (I think) Reflection.<br />
<br />
Oh, and by the way, the Go does not seem to be object-oriented (I am not sure.) and does not support exceptions...<br />
<br />
Thanks for reading, and I would like to hear your comments of this. <img src="/images/emo/smile.gif" alt=";)" /></description>
			<pubDate>Wed, 11 Nov 2009 15:02:00 GMT</pubDate>
			<author>donotreply@osnews.com (drstorm)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Dirty?</title>
			<link>http://www.osnews.com/thread?394005</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394005</guid>
			<description>Dirty perhaps.. but the mascot is so cute!</description>
			<pubDate>Wed, 11 Nov 2009 15:21:00 GMT</pubDate>
			<author>donotreply@osnews.com (oskar.h)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>...</title>
			<link>http://www.osnews.com/thread?394007</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394007</guid>
			<description>I was excited at the moment I read the title, but after reading the specs and the tutorial, I didn't find it sexy.Edited 2009-11-11 15:36 UTC</description>
			<pubDate>Wed, 11 Nov 2009 15:35:00 GMT</pubDate>
			<author>donotreply@osnews.com (Hiev)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Comment by Eddyspeeder</title>
			<link>http://www.osnews.com/thread?394008</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394008</guid>
			<description>I think it's pretty impressive to devise a wholly new programming language intended to compete with the &quot;major languages&quot; of today. Its major benefit: being just two years old (project started in 2007), rather than twenty (or forty, with some regenerations). This should have the potential of being headline news.<br />
<br />
It remains to be seen how this language finds its way into the programming world. I'm missing a book (open-source of course) that teaches starting developers how to go about their way with Go. Fortunately, at this point, their connection for existing developers (mainly C/C++) is really decent.<br />
<br />
I'm downloading the TechTalk video just now, it ought to be an interesting watch on my way home.</description>
			<pubDate>Wed, 11 Nov 2009 15:36:00 GMT</pubDate>
			<author>donotreply@osnews.com (Eddyspeeder)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Another dead language</title>
			<link>http://www.osnews.com/thread?394011</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394011</guid>
			<description>After reading the tutorial, I can say that it is already dead for me.<br />
<br />
Compared with mainstream languages, and languages that are currently gaining momentum as well, Go doesn't have much to offer.<br />
<br />
And several syntactic elements look real strange, as many people already noted on the forums.<br />
<br />
I won't care about it.</description>
			<pubDate>Wed, 11 Nov 2009 15:45:00 GMT</pubDate>
			<author>donotreply@osnews.com (moondevil)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Not sure</title>
			<link>http://www.osnews.com/thread?394012</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394012</guid>
			<description>I like the idea<br />
<br />
but, is this just jocaml with C syntax?</description>
			<pubDate>Wed, 11 Nov 2009 15:45:00 GMT</pubDate>
			<author>donotreply@osnews.com (sanctus)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Why the focus on fast compilation?</title>
			<link>http://www.osnews.com/thread?394013</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394013</guid>
			<description>I think the designers of Go placed too much emphasis on fast compilation speeds. Apparently during early development they rejected a LLVM based solution because of slow compilation speed. Is compilation speed really that important? Maybe they should have gone the GHC route and provided a compiler and interpreter bundle. The GHC compiler can be a little sluggish sometimes, but the interpreter allows for quick iterative development by quickly catching all compile time errors when you load a source file. Leaving the slower, heavyweight compiler mainly for compiling optimized release builds rather then testing and debugging.</description>
			<pubDate>Wed, 11 Nov 2009 15:55:00 GMT</pubDate>
			<author>donotreply@osnews.com (flynn)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>cool, but the name sucks</title>
			<link>http://www.osnews.com/thread?394014</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394014</guid>
			<description>The language is nice, but Go is not a good name... it's hard to google for it, and Go Programming Language would be GPL, and is not easy to google it too.<br />
<br />
But I will check it out.</description>
			<pubDate>Wed, 11 Nov 2009 15:57:00 GMT</pubDate>
			<author>donotreply@osnews.com (stanbr)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Dirty?</title>
			<link>http://www.osnews.com/thread?394016</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394016</guid>
			<description>All issues (?) you've pointed out are just your personal preferences regarding the syntax. Is it really that important whether the import statement uses parentheses or not? To me any reasonably readable, regular and compact syntax will do, as long as the language has semantics and libraries I need.<br />
<br />
The language is OO (more than C++ or Java for that matter), has very flexible type system and built-in concurrency primitives. Feature set is pretty conservative but it feels right for system-level programming.<br />
<br />
Whether it is enough - hard to say. To promote a new system level language Google needs more than just a compiler, debugger and a basic class library. For start they should make Go a core part of their frameworks, just like what Sun or Microsoft did with Java or .Net.<br />
<br />
I'm also a bit concerned about the binary compatibility, this issue should be dealt with asap or Go may end up going C++ route, where each compiler/architecture uses different calling conventions, symbol names mangling etc.</description>
			<pubDate>Wed, 11 Nov 2009 16:03:00 GMT</pubDate>
			<author>donotreply@osnews.com (ndrw)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Dirty?</title>
			<link>http://www.osnews.com/thread?394019</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394019</guid>
			<description><div class="cquote">The language is OO (more than C++ or Java for that matter) </div><br />
Please do elaborate (especially about Go being more OO than Java).</description>
			<pubDate>Wed, 11 Nov 2009 16:08:00 GMT</pubDate>
			<author>donotreply@osnews.com (drstorm)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Why break conventions?</title>
			<link>http://www.osnews.com/thread?394023</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394023</guid>
			<description>I will never understand languages that decide to break conventions.  Maybe the 'new' way is marginally better, but is it worth mucking with the mind of developers who have to code in multiple languages.<br />
<br />
var v2 string;            // const std::string v2;  <br />
var v3 [10]int;           // int v3[10];<br />
<br />
oh jeez, let's put the type after the name to be opposite of C.  I find myself working with java and C# and have to second guess myself every now and then where the array [] goes.  In C# (int[] arr1; ).  In java String s[];  Now we have another permutation on something rather irrelevant.<br />
<br />
They kind of address this in the lang design faq, but not directly, and its more to do with multiple declarations on the same line.<br />
<br />
<br />
On the good side, I like their native support for Go Routines (threads), Go Channel (Message passing), unit testing<br />
<br />
Always good to see another language though.  I'll see if their *quick* compile time really plays out.  Knowing Google... it probably does.</description>
			<pubDate>Wed, 11 Nov 2009 16:21:00 GMT</pubDate>
			<author>donotreply@osnews.com (Yamin)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Dirty?</title>
			<link>http://www.osnews.com/thread?394029</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394029</guid>
			<description>It uses interfaces to describe capabilities (i.e. duck typing), not a rigid class hierarchy. With no restrictions on what you can attach methods to, it is much more flexible and simpler mechanism than subclassing. &quot;Subclassing&quot; is still available through type embedding, btw. Whenever you embed other types, you automatically &quot;inherit&quot; their interfaces and implementations (of course, you can redefine some of their methods if you choose so).</description>
			<pubDate>Wed, 11 Nov 2009 16:54:00 GMT</pubDate>
			<author>donotreply@osnews.com (ndrw)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Dirty?</title>
			<link>http://www.osnews.com/thread?394030</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394030</guid>
			<description>I think his points are valid (regarding parens).  They are not needed at their position for return variables.  They come between &quot;)&quot; and &quot;{&quot;... the parser should not require the parens for a list of return vars.<br />
<br />
It IS just opinion, but still, it seems like an extraneous thing that was unnecessary.<br />
<br />
Built-in functions are fine with me... languages like Euphoria simply auto-include certain files that include oft-used functions.  Same with Python, etc.<br />
<br />
The bit about making a var/type public simply by capitalizing the first letter ... that just doesn't seem like a good idea.<br />
<br />
But again, you are right, that is a matter of taste, I suppose.  Like how some people get riled up about Python's indentation rules.</description>
			<pubDate>Wed, 11 Nov 2009 17:00:00 GMT</pubDate>
			<author>donotreply@osnews.com (Tuishimi)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: cool, but the name sucks</title>
			<link>http://www.osnews.com/thread?394031</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394031</guid>
			<description>Wouldn't that be irony?  It being hard to Google a Google language?  <img src="/images/emo/smile.gif" alt=";)" /></description>
			<pubDate>Wed, 11 Nov 2009 17:01:00 GMT</pubDate>
			<author>donotreply@osnews.com (Tuishimi)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Another dead language</title>
			<link>http://www.osnews.com/thread?394033</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394033</guid>
			<description>Same here.  I'd rather use Euphoria and/or groovy for pet projects.  Heh.  Actually I'd rather still be coding in VAX Ada and VAX BASIC.  LOL!</description>
			<pubDate>Wed, 11 Nov 2009 17:07:00 GMT</pubDate>
			<author>donotreply@osnews.com (Tuishimi)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Dirty?</title>
			<link>http://www.osnews.com/thread?394035</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394035</guid>
			<description>I think the inconsistant syntax, however, will be massaged out once the language gets further from the experimental stage.</description>
			<pubDate>Wed, 11 Nov 2009 17:14:00 GMT</pubDate>
			<author>donotreply@osnews.com (Almafeta)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Dirty?</title>
			<link>http://www.osnews.com/thread?394036</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394036</guid>
			<description><div class="cquote">So, I ask, why do we need parentheses when returning more values? Why can't we just write this:<br />
"<i>func foo(i int) a, b int {} </div><br />
 </i>"<br />
I find that especially odd, since control structures (if, for, ...) do <i>not</i> use parentheses, and &quot;Go needs fewer parentheses&quot; is listed as an advantage of Go's formatting.<br />
Of course, apart from that, Go might still be a nice language.</description>
			<pubDate>Wed, 11 Nov 2009 17:27:00 GMT</pubDate>
			<author>donotreply@osnews.com (mightshade)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Comment by Anon9</title>
			<link>http://www.osnews.com/thread?394037</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394037</guid>
			<description>It seems to me like a cross between Smalltalk and C with better concurrency features.<br />
<br />
[OT] I really have enjoyed working with the D programming language lately. D is a systems programming language that more similar to C++ than any other language, but IMO D is much nicer that C++. [/OT]</description>
			<pubDate>Wed, 11 Nov 2009 17:30:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anon9)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Why break conventions?</title>
			<link>http://www.osnews.com/thread?394038</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394038</guid>
			<description><div class="cquote">In C# (int[] arr1; ).  In java String s[];  Now we have another permutation on something rather irrelevant.<br />
 </div><br />
<br />
In java - String[] s; and String s[]; are equivalent - one of the few odd places in java where there are two ways of doing exactly the same thing.</description>
			<pubDate>Wed, 11 Nov 2009 17:34:00 GMT</pubDate>
			<author>donotreply@osnews.com (joshv)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Free open source labor</title>
			<link>http://www.osnews.com/thread?394047</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394047</guid>
			<description>I love this:<br />
<br />
<div class="cquote">At this point, Go isn't used in any user-facing Google service or application, since it still has to mature, which is where external programmers come into the picture. <b>&quot;We need better libraries and tools, and the open-source community is great at helping you with things like that,&quot; Pike said.</b> </div><br />
<br />
In other words, &quot;We desire for the open source community to write free sh*t for us.&quot;  I don't write open source software for a living, but if I did, I'd be sort of offended by this. Here's a novel idea... if they need more coders/testers, why don't they hire some, instead of expecting the open source crowd to do it for $0?<br />
<br />
Of course, I realize that not everybody is in it for the money, but if you're going to write/test code for a for-profit company, you should expect to be paid for it, IMHO.</description>
			<pubDate>Wed, 11 Nov 2009 18:11:00 GMT</pubDate>
			<author>donotreply@osnews.com (WorknMan)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>wish..</title>
			<link>http://www.osnews.com/thread?394053</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394053</guid>
			<description>i think problem with Go is that it is initially designed by two old (maybe long bearded) respectable unix guys. But because of their mind set Syntax seems cryptic and  somewhat too low level -  alien. i wish they got two higher level  masters from Google into their group (Rossum and Bloch). I also wish Google came up with next generation Java instead..</description>
			<pubDate>Wed, 11 Nov 2009 18:35:00 GMT</pubDate>
			<author>donotreply@osnews.com (ahmetaa)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Google TechTalk on Go language</title>
			<link>http://www.osnews.com/thread?394054</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394054</guid>
			<description>Rob Pike give a 1hr talk on Go on Oct 30.<br />
<br />
<a href="http://www.youtube.com/watch?v=rKnDgT73v8s" rel="nofollow">http://www.youtube.com/watch?v=rKnDgT73v8s</a></description>
			<pubDate>Wed, 11 Nov 2009 18:37:00 GMT</pubDate>
			<author>donotreply@osnews.com (bannor99)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Dirty?</title>
			<link>http://www.osnews.com/thread?394062</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394062</guid>
			<description>Rob Pike and Ken Thompson, who are leading the project, worked together previously on Plan 9 at Bell Labs, which had a similar looking mascot:<br />
 <br />
 <a href="http://en.wikipedia.org/wiki/Glenda,_the_Plan_9_Bunny" rel="nofollow">http://en.wikipedia.org/wiki/Glenda,_the_Plan_9_Bunny</a>  <br />
 <br />
 It wouldn't surprise me if this one was also drawn by Renee French (Pike's wife).Edited 2009-11-11 19:28 UTC</description>
			<pubDate>Wed, 11 Nov 2009 19:27:00 GMT</pubDate>
			<author>donotreply@osnews.com (Bryan)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Another Go Language??</title>
			<link>http://www.osnews.com/thread?394065</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394065</guid>
			<description>Google isn't the first to call a programming language Go.<br />
<br />
Here's a link to the other Go's book.<br />
<br />
<a href="http://www.lulu.com/content/paperback-book/lets-go/641689" rel="nofollow">http://www.lulu.com/content/paperback-book/lets-go/641689</a></description>
			<pubDate>Wed, 11 Nov 2009 19:46:00 GMT</pubDate>
			<author>donotreply@osnews.com (systyrant)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Free open source labor</title>
			<link>http://www.osnews.com/thread?394066</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394066</guid>
			<description><div class="cquote">I don't write open source software for a living, but if I did, I'd be sort of offended by this.<br />
...<br />
Of course, I realize that not everybody is in it for the money, but if you're going to write/test code for a for-profit company, you should expect to be paid for it, IMHO. </div><br />
  Developers would not be writing and testing for a for-profit company. They would be writing and testing for an open-source project which they and others presumably find useful. &quot;Others&quot; being Inclusive of  Google, of course, which did the major grunt work to get the project this far, and released into the OSS community. <br />
 <br />
 I'm not a current Go developer at Google, but if I were, I'd be offended by your ingrateful post.Edited 2009-11-11 19:50 UTC</description>
			<pubDate>Wed, 11 Nov 2009 19:49:00 GMT</pubDate>
			<author>donotreply@osnews.com (sbergman27)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Another Go Language??</title>
			<link>http://www.osnews.com/thread?394067</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394067</guid>
			<description>From Wikipedia:<br />
--------------------------------------------------------- <br />
It should be noted some issues with google's choice of name &quot;Go&quot; is in conflict with that of a previously released programming language called &quot;Go!&quot; by F. G. McCabe and K. L. Clark in 2004. The naming issue is discussed on Google's Go page, with current popular consensus that it should be renamed as &quot;Issue 9&quot; <br />
--------------------------------------------------------- <br />
<br />
I assume &quot;Issue 9&quot; is a loose reference to Plan9.</description>
			<pubDate>Wed, 11 Nov 2009 19:54:00 GMT</pubDate>
			<author>donotreply@osnews.com (fretinator)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Interesting</title>
			<link>http://www.osnews.com/thread?394070</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394070</guid>
			<description>I really like their approach on polymorphism and concurrency! <br />
<br />
It looks, to me, like a mix of Objective-C and Java. I had wished for something like this would be supported by Java as I mostly prefer composition to sub-classing. Even James Gosling seems to agree:<br />
<br />
<a href="http://www.artima.com/intv/gosling34.html" rel="nofollow">http://www.artima.com/intv/gosling34.html</a><br />
<a href="http://www.artima.com/intv/gosling13.html" rel="nofollow">http://www.artima.com/intv/gosling13.html</a></description>
			<pubDate>Wed, 11 Nov 2009 20:02:00 GMT</pubDate>
			<author>donotreply@osnews.com (agnus)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Dirty?</title>
			<link>http://www.osnews.com/thread?394073</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394073</guid>
			<description>&quot;The bit about making a var/type public simply by capitalizing the first letter ... that just doesn't seem like a good idea.&quot;<br />
<br />
I think I can hear someone in China sigh.</description>
			<pubDate>Wed, 11 Nov 2009 20:08:00 GMT</pubDate>
			<author>donotreply@osnews.com (Lennie)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Google TechTalk on Go language</title>
			<link>http://www.osnews.com/thread?394078</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394078</guid>
			<description>What also bothers is me is, Rob Pike doesn't have any facial hair. Ken Thompson has, so I guess it's ok.</description>
			<pubDate>Wed, 11 Nov 2009 20:20:00 GMT</pubDate>
			<author>donotreply@osnews.com (Lennie)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Why break conventions?</title>
			<link>http://www.osnews.com/thread?394079</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394079</guid>
			<description><div class="cquote">"<i>In C# (int[] arr1; ).  In java String s[];  Now we have another permutation on something rather irrelevant.<br />
 </div><br />
<br />
In java - String[] s; and String s[]; are equivalent - one of the few odd places in java where there are two ways of doing exactly the same thing. </i>"<br />
<br />
Right. Java convention prefers the former, since it arguably makes a lot more sense to keep the type information together. But the compiler accepts both syntaxes...</description>
			<pubDate>Wed, 11 Nov 2009 20:22:00 GMT</pubDate>
			<author>donotreply@osnews.com (Delgarde)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Dirty?</title>
			<link>http://www.osnews.com/thread?394083</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394083</guid>
			<description><div class="cquote">The bit about making a var/type public simply by capitalizing the first letter ... that just doesn't seem like a good idea. </div><br />
<br />
I personally think it is a wonderful idea. It may be somewhat arbitrary and it wont be obvious to new users because the concept is somewhat unique, but what it DOES do is create a <b>reason</b> for differentiating starting case on your symbol names, and even better it has consequences. <br />
<br />
Almost all languages have conventions for this, but none of them have a reason for it - it is simply convention. Convention without concrete purpose results in coding errors because people start to assume things due expectations based on convention.<br />
<br />
For example, in many languages the convention is all uppercase variables are constants. But there is no consequence for not adhering to this (other than it will confuse the crap out of other people).<br />
<br />
In go, a variable starting with an upper case character is publicly scoped - that isn't a convention, it is a RESULT of making the starting character upper case.</description>
			<pubDate>Wed, 11 Nov 2009 20:41:00 GMT</pubDate>
			<author>donotreply@osnews.com (galvanash)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Another Go Language??</title>
			<link>http://www.osnews.com/thread?394085</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394085</guid>
			<description><div class="cquote">I assume &quot;Issue 9&quot; is a loose reference to Plan9. </div><br />
<br />
Loose reference yes.  Also a direct reference to the fact that the name conflict is issue 9 in the google code issue tracker for the go language project:<br />
<a href="http://code.google.com/p/go/issues/detail?id=9" rel="nofollow">http://code.google.com/p/go/issues/detail?id=9</a></description>
			<pubDate>Wed, 11 Nov 2009 20:44:00 GMT</pubDate>
			<author>donotreply@osnews.com (steve_s)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Meh....  :) </title>
			<link>http://www.osnews.com/thread?394091</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394091</guid>
			<description>The syntax reminds me a lot of the &quot;D&quot; programming language. I'd probably prefer to use D though, given that it has goodies like lazy evaluation.</description>
			<pubDate>Wed, 11 Nov 2009 20:58:00 GMT</pubDate>
			<author>donotreply@osnews.com (obsidian)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Why break conventions?</title>
			<link>http://www.osnews.com/thread?394110</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394110</guid>
			<description>aaah, I stand enlightened <img src="/images/emo/tongue.gif" alt=";)" /> <br />
<br />
I guess I don't need to be careful about that in Java.  Might save me what is left of my brain cells.</description>
			<pubDate>Wed, 11 Nov 2009 21:32:00 GMT</pubDate>
			<author>donotreply@osnews.com (Yamin)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Meh....  :) </title>
			<link>http://www.osnews.com/thread?394111</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394111</guid>
			<description>I also find D quite nice, but not sure if it will ever gain traction.<br />
<br />
Still waiting on D 2.0 to come out. And out is all about the low level calls when you need to use D on Windows?</description>
			<pubDate>Wed, 11 Nov 2009 21:33:00 GMT</pubDate>
			<author>donotreply@osnews.com (moondevil)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: Dirty?</title>
			<link>http://www.osnews.com/thread?394126</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394126</guid>
			<description>OK. That is Prototype-based programming which is a kind of OO, but I don't see how is that more object-oriented than Java. Is JavaScript more OO than Java?<br />
<br />
Unlike Go, in Java everything is an object and although you could write a procedural Java code by putting everything in one static class, all those &quot;static&quot; keywords scream that you are doing it wrong.<br />
<br />
In Go, however, you can write very C-like procedural programs without even knowing that you can make objects.<br />
<br />
The point is, I still don't know how Go can be considered more OO. In fact I argue that it is, in fact, just the opposite.</description>
			<pubDate>Wed, 11 Nov 2009 22:19:00 GMT</pubDate>
			<author>donotreply@osnews.com (drstorm)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: Dirty?</title>
			<link>http://www.osnews.com/thread?394130</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394130</guid>
			<description>I agree that it's practical and it would go well with Python's block indentation, but if you add too much of these &quot;shortcuts&quot; to a language you can make it difficult and full of &quot;gotchas&quot;.</description>
			<pubDate>Wed, 11 Nov 2009 22:25:00 GMT</pubDate>
			<author>donotreply@osnews.com (drstorm)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Why the focus on fast compilation?</title>
			<link>http://www.osnews.com/thread?394136</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394136</guid>
			<description>flynn wrote:<br />
<i>&quot;I think the designers of Go placed too much emphasis on fast compilation speeds. Apparently during early development they rejected a LLVM based solution because of slow compilation speed. Is compilation speed really that important?&quot;</i><br />
<br />
This language was written to scratch Google developer's own itch, so compile times were obviously an important factor for them. I like seeing a new language aimed at system level programing, glancing at the syntax it looks like it's based on c. The language itself has some nice properties, like corout...(oops) goroutines with an outspoken aim of easing programming for concurrency, multithreading (which I guess will be it's biggest draw). Being targeted at system level programming performance will obviously be important and using automatic garbage collection is more expensive than manual, however great development has been made in the field of garbage collecting so it will be interesting to see what it performs like (anyone know what method they use?). Anyway, good to see a new non-managed language, I'll reserve further judgement until I've actually tried it and had a chance to see what the performance is like. Saying that it is 'near' c speed doesn't really say that much since 'near' can be VERY broadly defined as we've seen in the past.</description>
			<pubDate>Wed, 11 Nov 2009 22:40:00 GMT</pubDate>
			<author>donotreply@osnews.com (Valhalla)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Dirty?</title>
			<link>http://www.osnews.com/thread?394138</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394138</guid>
			<description><div class="cquote"><br />
Functions can return more than one value (which is cool) like this:<br />
"<i>func foo(i int) (a, b int) {} </div><br />
A function that returns only one value looks like this:<br />
<div class="cquote">func bar(i int) int {} </div><br />
So, I ask, why do we need parentheses when returning more values? Why can't we just write this:<br />
<div class="cquote">func foo(i int) a, b int {} </div><br />
 </i>"<br />
I'm not sure if there are any technical reasons, but IMHO the parentheses make it more obvious that it's all part of the return type.<br />
<br />
<div class="cquote"><br />
Oh, and by the way, the Go does not seem to be object-oriented (I am not sure.) and does not support exceptions...<br />
 </div><br />
Go is fairly object-oriented, although a little differently from c++/java (no type hierarchy). Still, it has methods, interfaces, and the like.<br />
<br />
As far as exceptions, the FAQ <a href="http://golang.org/doc/go_lang_faq.html" rel="nofollow">http://golang.org/doc/go_lang_faq.html</a><br />
suggests that the authors are leaving it as an &quot;open issue&quot; for now, so they might still enter in some form, I guess.<br />
<br />
While the lack of exceptions and generics/templates (also an &quot;open issue&quot;) make me a little worried, Go still seems like a nice improvement over C for most programs. I'm surprised they didn't make a bigger deal of Go's support for proper closures (at least according to the spec) and anonymous functions, though - making C++ functors is quite painful.</description>
			<pubDate>Wed, 11 Nov 2009 22:45:00 GMT</pubDate>
			<author>donotreply@osnews.com (frytvm)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>I would love this if it had generics</title>
			<link>http://www.osnews.com/thread?394139</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394139</guid>
			<description>Some aspects of this language seem really nice, especially the concurrency support and speed. I don't particularly like the syntax, but it's alright. However, one feature I really can't live without is generics. If they added generics I'd probably start using it right now for all my projects.</description>
			<pubDate>Wed, 11 Nov 2009 22:56:00 GMT</pubDate>
			<author>donotreply@osnews.com (Zifre)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: Why the focus on fast compilation?</title>
			<link>http://www.osnews.com/thread?394173</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394173</guid>
			<description><div class="cquote">Being targeted at system level programming performance will obviously be important and using automatic garbage collection is more expensive than manual, however great development has been made in the field of garbage collecting so it will be interesting to see what it performs like (anyone know what method they use?). </div><br />
It's really debatable whether the cost of automatic garbage collection is more than that of manual memory management, especially as the size and complexity of the program grows. I used to be firmly in the manual camp, but these days, it seems to be better to let the machine keep track of your memory, especially if correctness is required.  <br />
 <br />
 That said, Go's garbage collector is (currently) based on a very primitive mark and sweep algorithm. It's basically a child's toy compared to the generational, iterative, compacting collectors found in the JVM and CLR.<br />
 <br />
 <div class="cquote">Anyway, good to see a new non-managed language, I'll reserve further judgement until I've actually tried it and had a chance to see what the performance is like. </div><br />
 It's certainly interesting for language geeks, and I've spent too much time already digging through it because I like these things, but I don't see a new non-managed language truly having much use going forward. The ability to distribute a single binary that can run on (and be optimized for) x86, AMD64, PPC, MIPS, Arm, etc has too many advantages to ignore. And there is no denying that the potential for optimization in a JIT compiler far exceeds that of a static compiler-- even if we're not quite there yet.Edited 2009-11-12 00:40 UTC</description>
			<pubDate>Thu, 12 Nov 2009 00:35:00 GMT</pubDate>
			<author>donotreply@osnews.com (cb_osn)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: Dirty?</title>
			<link>http://www.osnews.com/thread?394198</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394198</guid>
			<description>OO is (mostly) about leveraging polymorphism to create flexible code. Inheritance based polymorphism is probably the most tightly coupled and rigid form of polymorphism.<br />
<br />
It's not something you really get until you fully implement something in a language that is not class oriented the way that most of the c++-ish systems languages are. Really grokking something like ruby or smalltalk will totally change the way you look at these things.<br />
<br />
Also, dynamic dispatch + duck typing does not nessicarily mean prototypal. For example, ruby is a strongly typed language where objects can (and often do) vary from their type. In js, you can do <br />
&quot;&quot;.prototype.foo = new function() { .. }<br />
 that will add foo to all instances of string. in ruby, attaching a method to the string class is one option, another is to attach it to the instance, like<br />
<br />
s = &quot;&quot;<br />
def s.foo<br />
..<br />
end<br />
s.foo # calls method<br />
&quot;&quot;.foo # method not found, only exists on s<br />
<br />
Anyways, all that to say that while prototypal programming is one way to do this sort of thing, doesn't mean there aren't others.</description>
			<pubDate>Thu, 12 Nov 2009 01:46:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Why break conventions?</title>
			<link>http://www.osnews.com/thread?394199</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394199</guid>
			<description>Pretty sure there are a lot more languages out there where the type goes after the variable rather then before. works that way in c# 3.5+ too <br />
<br />
var bar = new Foo()</description>
			<pubDate>Thu, 12 Nov 2009 01:50:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Looks really cool</title>
			<link>http://www.osnews.com/thread?394202</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394202</guid>
			<description>I find coding in languages without dynamic dispatch and type inference nowadays feels like working with a chisel on stone when you are used to a paintbrush on canvas. It is fantastic to see someone (other then scala) bring this to a systems language, and the fact that it is unmanaged makes it downright unique. Also, compiling 120k lines of code in 8 seconds, and 1k lines in 20 milliseconds is downright delightful. Compiled languages tend to be horribly unproductive when working through the refactor/compile/test cycle compared to languages that take out the middle step.<br />
<br />
<br />
They are pretty far from prime time still (standard library seems rather anemic), but I think this is one of the most interesting new languages I have seen in a very long time. If they are able to match c performance with those kinds of features, all the current systems languages will have going for them is the mountains of existing code already written in them.</description>
			<pubDate>Thu, 12 Nov 2009 01:57:00 GMT</pubDate>
			<author>donotreply@osnews.com (google_ninja)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: Dirty?</title>
			<link>http://www.osnews.com/thread?394211</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394211</guid>
			<description>Java's OO semantics have deficiencies that Go solves. To me it is equivalent to &quot;Go can be considered more OO&quot;.<br />
<br />
It doesn't mean that Java is bad - it's actually my favorite system-level language. But that's mostly because of its robust frameworks and the fact I've learned to live with its limitations.<br />
<br />
The Java OO deficiencies (those that matter to me) are:<br />
- non-OO primitive types,<br />
- no multi class inheritance (for a good reason - it can get messy very quickly),<br />
- limited interfaces (the only way to implement an interface is to write it by hand or inherit it from a (single!) base class).<br />
<br />
Go simply doesn't have these limitations.<br />
<br />
I agree with you that one can write procedural programs in Go (and Java, C++,...). However, this doesn't make the language non-OO, it's just user's choice not to use these capabilities.<br />
<br />
---<br />
Sorry about my comments regarding the Go syntax issues. I just can't help thinking that even a bad syntax (which it isn't) is at worst a nuisance.</description>
			<pubDate>Thu, 12 Nov 2009 03:33:00 GMT</pubDate>
			<author>donotreply@osnews.com (ndrw)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: Dirty?</title>
			<link>http://www.osnews.com/thread?394223</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394223</guid>
			<description>Here is an example of where the parens are missing in a list of operations (for-loop and if syntax)...<br />
<br />
19    func main() {<br />
20        flag.Parse();   // Scans the arg list and sets up flags<br />
21        var s string = &quot;&quot;;<br />
22        for i := 0; i &lt; flag.NArg(); i++ {<br />
23            if i &gt; 0 {<br />
24                s += Space<br />
25            }<br />
26            s += flag.Arg(i)<br />
27        }<br />
28        if !*omitNewline {<br />
29            s += Newline<br />
30        }<br />
31        os.Stdout.WriteString(s);<br />
32    }<br />
<br />
At first glance it all seems willy-nilly.</description>
			<pubDate>Thu, 12 Nov 2009 06:05:00 GMT</pubDate>
			<author>donotreply@osnews.com (Tuishimi)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: Dirty?</title>
			<link>http://www.osnews.com/thread?394224</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394224</guid>
			<description>It DOES have some nice features tho... channeling... etc.</description>
			<pubDate>Thu, 12 Nov 2009 06:11:00 GMT</pubDate>
			<author>donotreply@osnews.com (Tuishimi)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Another dead language</title>
			<link>http://www.osnews.com/thread?394266</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394266</guid>
			<description>If they manage to combine fast compiling with fast execution and the ability to do low level systems programming then they could be on to something.  Not many other languages are working on that combination of features.</description>
			<pubDate>Thu, 12 Nov 2009 13:10:00 GMT</pubDate>
			<author>donotreply@osnews.com (dagw)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Useless without a platform</title>
			<link>http://www.osnews.com/thread?394270</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394270</guid>
			<description>The real problem with low-level programming is libraries that allow performing useful stuff, not how many parentheses and where you write declaring array variables. <br />
 <br />
 E.g. Fortran is still used in numerical computations because there are vast libraries of already developed code, going back to 1960's.<br />
 <br />
 Fast compilation? Hmmm. Why would I need fast compilation when the language itself has weak library (I've had a look at it, it is quite patchy) and this won't allow me to easily 'say' what I want to say solving concrete low-level programming problem?Edited 2009-11-12 13:50 UTC</description>
			<pubDate>Thu, 12 Nov 2009 13:45:00 GMT</pubDate>
			<author>donotreply@osnews.com (iliks)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Useless without a platform</title>
			<link>http://www.osnews.com/thread?394272</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394272</guid>
			<description>The real problem with low-level programming is libraries that allow performing useful stuff, not how many parentheses and where you write declaring array variables. <br />
 <br />
 E.g. Fortran is still used in numerical computations because there are vast libraries of already developed code, going back to 1960's.<br />
 <br />
 Fast compilation? Hmmm. Why would I need fast compilation when the language itself has weak library (I've had a look at it, it is quite patchy) and this won't allow me to easily 'say' what I want to say using concrete low-level programming problem?Edited 2009-11-12 14:03 UTC</description>
			<pubDate>Thu, 12 Nov 2009 14:00:00 GMT</pubDate>
			<author>donotreply@osnews.com (iliks)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>They have $22 billion in cash</title>
			<link>http://www.osnews.com/thread?394304</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394304</guid>
			<description>Previous poster is right, Google is ran by cheapskates. <br />
<br />
If they want some more libraries then they should hire some more developers.</description>
			<pubDate>Thu, 12 Nov 2009 16:51:00 GMT</pubDate>
			<author>donotreply@osnews.com (nt_jerkface)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: They have $22 billion in cash</title>
			<link>http://www.osnews.com/thread?394306</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394306</guid>
			<description>If you don't want to contribute, don't contribute. Simple as that. Though neither of you seem like the sort of people who contribute code to OSS projects, anyway. Am I right?<br />
 <br />
 As the score stands now regarding this project, it's Google and its paid employees which have done all the contributing.Edited 2009-11-12 17:01 UTC</description>
			<pubDate>Thu, 12 Nov 2009 17:00:00 GMT</pubDate>
			<author>donotreply@osnews.com (sbergman27)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Limbo</title>
			<link>http://www.osnews.com/thread?394399</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394399</guid>
			<description>It looks like a remake of the Limbo programming language (part of the Inferno operating system <img src="/images/emo/wink.gif" alt=";)" /> <br />
<br />
It was also conceived by Kernighan, Ritchie &amp; Pike while they were at Bell Labs...<br />
<br />
<a href="http://en.wikipedia.org/wiki/Limbo_%28programming_language%29" rel="nofollow">http://en.wikipedia.org/wiki/Limbo_%28programming_language%...</a> <br />
<a href="http://www.vitanuova.com/inferno/limbo.html" rel="nofollow">http://www.vitanuova.com/inferno/limbo.html</a></description>
			<pubDate>Fri, 13 Nov 2009 01:40:00 GMT</pubDate>
			<author>donotreply@osnews.com (ziba)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>At first was sceptical, but has a few good points</title>
			<link>http://www.osnews.com/thread?394437</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394437</guid>
			<description>semi-C syntax + concurrency - delegation/inheritance<br />
0. The whole &quot;type after variable&quot; feels very weird in this as compared to other languages which do the same.<br />
<br />
1. No inheritance or delegation..<br />
It seems to have the Dylan (and CLisp) style of decoupling the class from the methods; but I really find the method syntax confusing.<br />
<br />
func (this Class) method(arg1 Arg1, arg2 Arg2) Ret {}<br />
<br />
It looks clean but I keep getting mixed up on lot of occassions. The new C++0x syntax on the other hand:<br />
<br />
[] Class::method(Arg1 arg1, Arg2 arg2) -&gt; Ret {}<br />
<br />
While more senile, I actually find it easier to read.<br />
<br />
2. The mechanism for maps was very awkward to me.<br />
<br />
Although I don't think it offers anything new. Also I don't quite get how it can have C++ like speeds..</description>
			<pubDate>Fri, 13 Nov 2009 10:09:00 GMT</pubDate>
			<author>donotreply@osnews.com (FealDorf)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: At first was sceptical, but has a few good points</title>
			<link>http://www.osnews.com/thread?394442</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394442</guid>
			<description><div class="cquote">Alhough I don't think it offers anything new. Also I don't quite get how it can have C++ like speeds.. </div><br />
 <br />
 The interface stuff is completely new, I think. It's also insanely cool - static duck typing without the template complexity :-).Edited 2009-11-13 11:17 UTC</description>
			<pubDate>Fri, 13 Nov 2009 11:16:00 GMT</pubDate>
			<author>donotreply@osnews.com (vivainio)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[2]: At first was sceptical, but has a few good points</title>
			<link>http://www.osnews.com/thread?394449</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394449</guid>
			<description>I had thought about it.. It's (probably) not like templates.<br />
The deal is; first I thought it was the (removed) C++0x Concepts i.e., interfaces for templates -- which is *exactly* the same as this (cept for the extra syntax).<br />
<br />
But if it's like implicit C++ concepts, then every time you pass an object of a different class it would compile a new function meant specifically for that class. Considering how there's no inheritance, that would seriously increase the executable file size..<br />
<br />
The alternative is that it's similar to pure-virtual classes, which wouldn't give it C++-template like speeds..</description>
			<pubDate>Fri, 13 Nov 2009 12:31:00 GMT</pubDate>
			<author>donotreply@osnews.com (FealDorf)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[3]: At first was sceptical, but has a few good points</title>
			<link>http://www.osnews.com/thread?394474</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394474</guid>
			<description><div class="cquote">But if it's like implicit C++ concepts, then every time you pass an object of a different class it would compile a new function meant specifically for that class. Considering how there's no inheritance, that would seriously increase the executable file size..<br />
 </div><br />
<br />
I trust they have something clever cooked up for this. It may also be that google doesn't care about the size that much.<br />
<br />
It's also very possible to use polymorphic vtables for this. Just create a different per-class vtable for every interface the class implements.<br />
<br />
Instead of speculating I'd rather just wait for someone to explain what exactly they are doing ;-).</description>
			<pubDate>Fri, 13 Nov 2009 16:50:00 GMT</pubDate>
			<author>donotreply@osnews.com (vivainio)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[4]: At first was sceptical, but has a few good points</title>
			<link>http://www.osnews.com/thread?394522</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394522</guid>
			<description><div class="cquote"><br />
It's also very possible to use polymorphic vtables for this. Just create a different per-class vtable for every interface the class implements.<br />
<br />
Instead of speculating I'd rather just wait for someone to explain what exactly they are doing ;-). </div><br />
<br />
<a href="http://www.reddit.com/r/programming/comments/a3hku/mark_c_chucarrolls_thoughts_on_go_googles_new/c0fool5" rel="nofollow">http://www.reddit.com/r/programming/comments/a3hku/mark_c_chucarrol...</a></description>
			<pubDate>Fri, 13 Nov 2009 20:10:00 GMT</pubDate>
			<author>donotreply@osnews.com (vivainio)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[5]: At first was sceptical, but has a few good points</title>
			<link>http://www.osnews.com/thread?394617</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394617</guid>
			<description>Ah, that's *exactly* what I was trying to say earlier but I wasn't sure if I had the right words... Nevertheless, that means it is as efficient as &quot;virtual C++&quot;.<br />
<br />
Which would also explain the benchmarks:<br />
<a href="http://shootout.alioth.debian.org/u64/benchmark.php?test=all&amp;lang=go&amp;lang2=gpp&amp;box=1" rel="nofollow">http://shootout.alioth.debian.org/u64/benchmark.php?test=all&amp;la...</a></description>
			<pubDate>Sat, 14 Nov 2009 11:45:00 GMT</pubDate>
			<author>donotreply@osnews.com (FealDorf)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[6]: At first was sceptical, but has a few good points</title>
			<link>http://www.osnews.com/thread?394624</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394624</guid>
			<description><div class="cquote"><br />
Which would also explain the benchmarks:<br />
<a href="http://shootout.alioth.debian.org/u64/benchmark.php?test=allã=go&amp;amp;lang2=gpp&amp;amp;box=1" rel="nofollow">http://shootout.alioth.debian.org/u64/benchmark.php?test=allã=go&...</a>   </div><br />
<br />
There is no point wasting too much time on benchmark comparisons right now, esp. for the &quot;6g&quot; compiler which doesn't optimize seriously yet.<br />
<br />
Go by no means forces you to use interfaces, direct method calls don't go through the interface jump table.</description>
			<pubDate>Sat, 14 Nov 2009 13:44:00 GMT</pubDate>
			<author>donotreply@osnews.com (vivainio)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE[7]: At first was sceptical, but has a few good points</title>
			<link>http://www.osnews.com/thread?394639</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394639</guid>
			<description>No, but it sure gives one a rough estimate of how 'fast' a language because I don't think optimizations can contribute to a great change in it, especially because it's not like Java or C# which has a complex type system or so, but then I'm not so knowledgeable in this area.<br />
Also, interfaces are not used in that submitted code (which is by the Go creators)..<br />
<br />
I'm just sceptical about the &quot;as fast as C&quot; claims when the languages are of much higher-level. And Go is sufficiently high level. After optimizations I expect it to optimistically meet the speeds of C# Mono implementation but not too much more than that..Edited 2009-11-14 15:37 UTC</description>
			<pubDate>Sat, 14 Nov 2009 15:34:00 GMT</pubDate>
			<author>donotreply@osnews.com (FealDorf)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>sad and stupid</title>
			<link>http://www.osnews.com/thread?394879</link>
			<guid isPermaLink="true">http://www.osnews.com/thread?394879</guid>
			<description>just the very idea that we need to &quot;open source&quot; a programming language shows how stupid the whole IP/copyright/patent issue has become.</description>
			<pubDate>Mon, 16 Nov 2009 02:07:00 GMT</pubDate>
			<author>donotreply@osnews.com (RRepster)</author>
			<category>Comments</category>
		</item>
	</channel>
</rss>
