<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Go borrows key concepts from Erlang</title>
	<atom:link href="http://erlanginside.com/go-borrows-from-erlang-123/feed" rel="self" type="application/rss+xml" />
	<link>http://erlanginside.com/go-borrows-from-erlang-123</link>
	<description>News and Information on Erlang and Concurrent Computing</description>
	<lastBuildDate>Tue, 31 Jan 2012 11:04:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: Chad DePue</title>
		<link>http://erlanginside.com/go-borrows-from-erlang-123/comment-page-1#comment-566</link>
		<dc:creator>Chad DePue</dc:creator>
		<pubDate>Wed, 11 May 2011 17:41:38 +0000</pubDate>
		<guid isPermaLink="false">http://erlanginside.com/?p=123#comment-566</guid>
		<description>Interesting idea - I don&#039;t think it would be easy to port Erlang to Go, as it&#039;s quite a complex C codebase, so it would make more sense, if one were so inclined, to take the Erjang approach and build an Erlang runtime from scratch in Go.</description>
		<content:encoded><![CDATA[<p>Interesting idea &#8211; I don&#8217;t think it would be easy to port Erlang to Go, as it&#8217;s quite a complex C codebase, so it would make more sense, if one were so inclined, to take the Erjang approach and build an Erlang runtime from scratch in Go.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francis Norton</title>
		<link>http://erlanginside.com/go-borrows-from-erlang-123/comment-page-1#comment-565</link>
		<dc:creator>Francis Norton</dc:creator>
		<pubDate>Wed, 11 May 2011 13:41:16 +0000</pubDate>
		<guid isPermaLink="false">http://erlanginside.com/?p=123#comment-565</guid>
		<description>Now that Google have announced that they will be supporting Go on Google App Engine (http://blog.golang.org/2011/05/go-and-google-app-engine.html), I wonder - wouldn&#039;t Go be a rather suitable language for implementing Erlang?</description>
		<content:encoded><![CDATA[<p>Now that Google have announced that they will be supporting Go on Google App Engine (<a href="http://blog.golang.org/2011/05/go-and-google-app-engine.html" rel="nofollow">http://blog.golang.org/2011/05/go-and-google-app-engine.html</a>), I wonder &#8211; wouldn&#8217;t Go be a rather suitable language for implementing Erlang?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#187; links for 2010-10-29 (Dhananjay Nene)</title>
		<link>http://erlanginside.com/go-borrows-from-erlang-123/comment-page-1#comment-449</link>
		<dc:creator>&#187; links for 2010-10-29 (Dhananjay Nene)</dc:creator>
		<pubDate>Fri, 29 Oct 2010 20:09:20 +0000</pubDate>
		<guid isPermaLink="false">http://erlanginside.com/?p=123#comment-449</guid>
		<description>[...] Go borrows key concepts from Erlang – Erlang Inside Two posts to place &#039;go&#039; in perspective http://erlanginside.com/go-borrows-from-erlang-123 http://avdi.org/devblog/2009/11/13/why-go-matters/ (tags: via:packrati.us)     This entry was posted on Saturday, October 30th, 2010 at 1:41 am and is filed under Bookmarks. You can follow any responses to this entry through the RSS 2.0 feed. Responses are currently closed, but you can trackback from your own site. [...]</description>
		<content:encoded><![CDATA[<p>[...] Go borrows key concepts from Erlang – Erlang Inside Two posts to place &#039;go&#039; in perspective <a href="http://erlanginside.com/go-borrows-from-erlang-123" rel="nofollow">http://erlanginside.com/go-borrows-from-erlang-123</a> <a href="http://avdi.org/devblog/2009/11/13/why-go-matters/" rel="nofollow">http://avdi.org/devblog/2009/11/13/why-go-matters/</a> (tags: via:packrati.us)     This entry was posted on Saturday, October 30th, 2010 at 1:41 am and is filed under Bookmarks. You can follow any responses to this entry through the RSS 2.0 feed. Responses are currently closed, but you can trackback from your own site. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivo Danihelka</title>
		<link>http://erlanginside.com/go-borrows-from-erlang-123/comment-page-1#comment-168</link>
		<dc:creator>Ivo Danihelka</dc:creator>
		<pubDate>Sat, 28 Nov 2009 22:46:06 +0000</pubDate>
		<guid isPermaLink="false">http://erlanginside.com/?p=123#comment-168</guid>
		<description>Go seems to care more about the efficiency than about the safety of the concurrency. The memory is still shared between the goroutines. You have to have the discipline to not read or modify it without a synchronization.</description>
		<content:encoded><![CDATA[<p>Go seems to care more about the efficiency than about the safety of the concurrency. The memory is still shared between the goroutines. You have to have the discipline to not read or modify it without a synchronization.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Google releases new programming language with concurrency features &#171; SoftTalk &#8211; multicore and parallel programming</title>
		<link>http://erlanginside.com/go-borrows-from-erlang-123/comment-page-1#comment-166</link>
		<dc:creator>Google releases new programming language with concurrency features &#171; SoftTalk &#8211; multicore and parallel programming</dc:creator>
		<pubDate>Wed, 25 Nov 2009 16:58:40 +0000</pubDate>
		<guid isPermaLink="false">http://erlanginside.com/?p=123#comment-166</guid>
		<description>[...] Chad DePue has compared Go to Erlang, and says: “Go provides a service to the Erlang community in that it validates the fundamentals of the Erlang platform. Goroutines are equivalent to Erlang processes&#8230; and Channels to Erlang messages.” He believes the most obvious application for Go is in web infrastructure, which is apt given where it’s coming from. [...]</description>
		<content:encoded><![CDATA[<p>[...] Chad DePue has compared Go to Erlang, and says: “Go provides a service to the Erlang community in that it validates the fundamentals of the Erlang platform. Goroutines are equivalent to Erlang processes&#8230; and Channels to Erlang messages.” He believes the most obvious application for Go is in web infrastructure, which is apt given where it’s coming from. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Google Go borrows key concepts from Erlang</title>
		<link>http://erlanginside.com/go-borrows-from-erlang-123/comment-page-1#comment-158</link>
		<dc:creator>Google Go borrows key concepts from Erlang</dc:creator>
		<pubDate>Tue, 17 Nov 2009 01:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://erlanginside.com/?p=123#comment-158</guid>
		<description>[...] Full Story [...]</description>
		<content:encoded><![CDATA[<p>[...] Full Story [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

