<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    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/"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
>
    <channel>
        <title>Silas Sewell - Go</title>
        <atom:link href="http://www.silassewell.com/blog/tag/go/rss2.xml" rel="self" type="application/rss+xml" />
        <link>http://www.silassewell.com/blog/tag/go</link>
        <description>Infrastructure Development</description>
        <lastBuildDate>Sat, 08 Jan 2011 00:00:00 GMT</lastBuildDate>
        <generator>http://www.silassewell.com/</generator>
        <language>en</language>
        <sy:updatePeriod>hourly</sy:updatePeriod>
        <sy:updateFrequency>1</sy:updateFrequency>

        <item>
            <title>Go Programming Language: Hello World (Fedora 13)</title>
            <link>http://www.silassewell.com/blog/2010/07/28/go-programming-language-hello-world-fedora-13/</link>
            <pubDate>Wed, 28 Jul 2010 00:00:00 GMT</pubDate>
            <dc:creator>silas</dc:creator>
            <category><![CDATA[Fedora]]></category><category><![CDATA[Go]]></category>
            <guid isPermaLink="true">http://www.silassewell.com/blog/2010/07/28/go-programming-language-hello-world-fedora-13/</guid>
            <description><![CDATA[<p>If you're interested in trying the <a href="http://golang.org/">Go Programming Language</a> I've created
an RPM for Fedora 13 to get you started quick (this package is in no way
suitable for submission to Fedora).</p>

<ol>
<li><p>Download the <a href="http://silas.fedorapeople.org/packages/go/go-0.0.0-0.1.release.2010.07.14.fc13.x86_64.rpm">x86_64</a> (or <a href="http://silas.fedorapeople.org/packages/go/go-0.0.0-0.1.release.2010.07.14.fc13.i686.rpm">i386</a>) RPM.</p></li>
<li><p>Install the Go package using yum.</p>

<pre><code class="prettyprint">sudo yum localinstall --nogpgcheck go-0.0.0*.rpm
</code></pre></li>
<li><p>Open a new shell.</p></li>
<li><p>Create a file named <code class="prettyprint">hello.go</code> and enter the following code:</p>

<pre><code class="prettyprint">package main

import "fmt"

func main() {
  fmt.Printf("Hello World!")
}
</code></pre></li>
<li><p>Compile, link and run (replace <code class="prettyprint">6</code> with <code class="prettyprint">8</code> if you're using i386).</p>

<pre><code class="prettyprint">$ 6g hello.go
$ 6l hello.6
$ ./6.out
</code></pre></li>
</ol>

<p>You can view the latest RPM source on <a href="http://github.com/silas/rpms/tree/master/go/">GitHub</a>.</p>

<p><em>Update</em>: It looks like someone has already created a much better
<a href="https://bugzilla.redhat.com/show_bug.cgi?id=610934">package</a>.</p>]]></description>
        </item>

    </channel>
</rss>
