<?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>The old men&#039;s Weblog &#187; Objective-C</title>
	<atom:link href="http://webcaker.com/category/os/objective-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://webcaker.com</link>
	<description>We&#039;d love to change the world, but they won&#039;t give us the source code.</description>
	<lastBuildDate>Mon, 26 Jul 2010 09:34:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Hello OBJ-C</title>
		<link>http://webcaker.com/2010/01/27/hello-obj-c/</link>
		<comments>http://webcaker.com/2010/01/27/hello-obj-c/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 16:00:44 +0000</pubDate>
		<dc:creator>caker</dc:creator>
				<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[Hello World]]></category>

		<guid isPermaLink="false">http://webcaker.com/?p=427</guid>
		<description><![CDATA[Hello obj-c, I just did my first obj-c app from Ubuntu with GNUStep ,see!



Things you need to know to compile the hello world app with GNUStep:


  sudo aptitude install gnustep gnustep-devel
  chmod +x  /usr/share/GNUStep/MakeFiles/GNUStep.sh
  /usr/share/GNUStep/MakeFiles/GNUStep.sh


source code here,  &#8230; <a href="http://webcaker.com/2010/01/27/hello-obj-c/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hello obj-c, I just did my first obj-c app from Ubuntu with GNUStep ,see!</p>

<p><img src="http://webcaker.com/wp-content/uploads/2010/01/Screenshot.png" alt="Screenshot" /></p>

<p>Things you need to know to compile the hello world app with GNUStep:</p>

<p><pre class="brush: bash;">
  sudo aptitude install gnustep gnustep-devel
  chmod +x  /usr/share/GNUStep/MakeFiles/GNUStep.sh
  /usr/share/GNUStep/MakeFiles/GNUStep.sh
</pre></p>

<p>source code here, very simple !</p>

<p><pre class="brush: cpp;">&lt;/p&gt;

&lt;h1&gt;import &amp;lt;Foundation/Foundation.h&amp;gt;&lt;/h1&gt;

&lt;p&gt;int main (void)
{
    NSLog (@&amp;amp;amp;quot;Hello obj-c !&amp;amp;amp;quot;);
    return 0;
}
</pre></p>

<p>GNUMakeFile:
<pre class="brush: bash;">
include $(GNUSTEP_MAKEFILES)/common.make
APP_NAME = HelloWorld
HelloWorld_HEADERS =
HelloWorld_OBJC_FILES = main.m
HelloWorld_RESOURCE_FILES =
include $(GNUSTEP_MAKEFILES)/application.make
</pre></p>

<p>that&#8217;s it !</p>
]]></content:encoded>
			<wfw:commentRss>http://webcaker.com/2010/01/27/hello-obj-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
