<?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: Web Development Frameworks: Developing For vs. Developing With</title>
	<atom:link href="http://alistairrobinson.co.uk/web-development-frameworks-developing-for-vs-developing-with/feed/" rel="self" type="application/rss+xml" />
	<link>http://alistairrobinson.co.uk/web-development-frameworks-developing-for-vs-developing-with/</link>
	<description></description>
	<lastBuildDate>Thu, 26 Jan 2012 22:34:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Al</title>
		<link>http://alistairrobinson.co.uk/web-development-frameworks-developing-for-vs-developing-with/comment-page-1/#comment-130</link>
		<dc:creator>Al</dc:creator>
		<pubDate>Mon, 14 Dec 2009 02:37:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.alistairrobinson.co.uk/blog/?p=641#comment-130</guid>
		<description>Almond mince pies, available at Fortnum and Mason:

http://www.fortnumandmason.com/(S(r5ifdtjpi5xsww455kyym555))/catalog/productinfo.aspx?id=8468&amp;AspxAutoDetectCookieSupport=1</description>
		<content:encoded><![CDATA[<p>Almond mince pies, available at Fortnum and Mason:</p>
<p><a href="http://www.fortnumandmason.com/(S(r5ifdtjpi5xsww455kyym555))/catalog/productinfo.aspx?id=8468&#038;AspxAutoDetectCookieSupport=1" rel="nofollow">http://www.fortnumandmason.com/(S(r5ifdtjpi5xsww455kyym555))/catalog/productinfo.aspx?id=8468&#038;AspxAutoDetectCookieSupport=1</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://alistairrobinson.co.uk/web-development-frameworks-developing-for-vs-developing-with/comment-page-1/#comment-129</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Sun, 13 Dec 2009 21:51:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.alistairrobinson.co.uk/blog/?p=641#comment-129</guid>
		<description>A nanagram of &quot;Almond Mince&quot; :)</description>
		<content:encoded><![CDATA[<p>A nanagram of &#8220;Almond Mince&#8221; :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alistair Robinson</title>
		<link>http://alistairrobinson.co.uk/web-development-frameworks-developing-for-vs-developing-with/comment-page-1/#comment-128</link>
		<dc:creator>Alistair Robinson</dc:creator>
		<pubDate>Thu, 10 Dec 2009 12:10:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.alistairrobinson.co.uk/blog/?p=641#comment-128</guid>
		<description>&quot;Command line&quot;? What&#039;s that?</description>
		<content:encoded><![CDATA[<p>&#8220;Command line&#8221;? What&#8217;s that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://alistairrobinson.co.uk/web-development-frameworks-developing-for-vs-developing-with/comment-page-1/#comment-127</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Thu, 10 Dec 2009 11:14:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.alistairrobinson.co.uk/blog/?p=641#comment-127</guid>
		<description>Haskell is definitely scary, but good scary! Then again, life is short.

First install the Glorious Glasgow Haskell Compiler via www.haskell.org, create a hello.hs text file, and put this in it:

&lt;code&gt;
main = putStrLn &quot;Hello, World!&quot;
&lt;/code&gt;

Then from the command line:
&lt;code&gt;
&gt; ghci hello.hs
*Main&gt;hello
Hello World!
*Main&gt;:q
&lt;/code&gt;

For more flexibility try this in hello2.hs
&lt;code&gt;
import System.Environment
-- n.b. Spacing: the p should be beneath the [
main = do [arg1,arg2] &lt;- getArgs
          putStrLn (arg1 ++ &quot; &quot; ++ arg2)
&lt;/code&gt;

Then type:
&lt;code&gt;
&gt; ghc --make hello2.hs
&gt; ./hello2 Hello Planet!
Hello Planet!
&lt;/code&gt;

ghc is GHC&#039;s exe name; ghci is GHC&#039;s interactive environment.

Check out the videos. Simon Peyton Jones gives a good introduction.
http://www.haskell.org/haskellwiki/Video_presentations

I&#039;m watching these now as they arrive:
http://channel9.msdn.com/shows/Going+Deep/Lecture-Series-Erik-Meijer-Functional-Programming-Fundamentals-Chapter-1/

Paul</description>
		<content:encoded><![CDATA[<p>Haskell is definitely scary, but good scary! Then again, life is short.</p>
<p>First install the Glorious Glasgow Haskell Compiler via <a href="http://www.haskell.org" rel="nofollow">http://www.haskell.org</a>, create a hello.hs text file, and put this in it:</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">main = putStrLn &quot;Hello, World!&quot;</div></div>
<p>Then from the command line:</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&gt; ghci hello.hs<br />
*Main&gt;hello<br />
Hello World!<br />
*Main&gt;:q</div></div>
<p>For more flexibility try this in hello2.hs</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">import System.Environment<br />
-- n.b. Spacing: the p should be beneath the [<br />
main = do [arg1,arg2] &lt;- getArgs<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; putStrLn (arg1 ++ &quot; &quot; ++ arg2)</div></div>
<p>Then type:</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&gt; ghc --make hello2.hs<br />
&gt; ./hello2 Hello Planet!<br />
Hello Planet!</div></div>
<p>ghc is GHC&#8217;s exe name; ghci is GHC&#8217;s interactive environment.</p>
<p>Check out the videos. Simon Peyton Jones gives a good introduction.<br />
<a href="http://www.haskell.org/haskellwiki/Video_presentations" rel="nofollow">http://www.haskell.org/haskellwiki/Video_presentations</a></p>
<p>I&#8217;m watching these now as they arrive:<br />
<a href="http://channel9.msdn.com/shows/Going+Deep/Lecture-Series-Erik-Meijer-Functional-Programming-Fundamentals-Chapter-1/" rel="nofollow">http://channel9.msdn.com/shows/Going+Deep/Lecture-Series-Erik-Meijer-Functional-Programming-Fundamentals-Chapter-1/</a></p>
<p>Paul</p>
]]></content:encoded>
	</item>
</channel>
</rss>

