<?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>API Programming &#187; Java</title>
	<atom:link href="http://www.brangle.com/wordpress/tag/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brangle.com/wordpress</link>
	<description>Just another computer weblog</description>
	<lastBuildDate>Wed, 14 Dec 2011 07:35:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Hello World</title>
		<link>http://www.brangle.com/wordpress/2009/06/hello-world-2/</link>
		<comments>http://www.brangle.com/wordpress/2009/06/hello-world-2/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 09:06:34 +0000</pubDate>
		<dc:creator>lopezg</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.brangle.com/wordpress/?p=3</guid>
		<description><![CDATA[Ok, well we all know it's inevitable, my very first post has to be a hello world example, so let her rip.... [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, well we all know it&#8217;s inevitable, my very first post has to be a hello world example, so let her rip&#8230;.<span id="more-3"></span></p>
<hr />
<h3>PHP</h3>
<pre>&lt;? echo 'Hello World!'; ?&gt;</pre>
<hr />
<h3>Java</h3>
<pre>public class HelloWorld
{
    public static void main(String[] args)
    {
        System.out.println("Hello World!");
    }
}</pre>
<hr />
<h3>C++</h3>
<pre>#include &lt;iostream&gt;

using namespace std;

int main()
{
    cout &lt;&lt; "Hello, world!\n";
    return 0;
}</pre>
<hr />Well as I did my first hello world programs, I think it became quickly apparent that I really need to figure out how to make the code on my website more readible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brangle.com/wordpress/2009/06/hello-world-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

