<?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>gnucom.cc &#187; F#</title>
	<atom:link href="http://blog.gnucom.cc/tag/fsharp/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.gnucom.cc</link>
	<description>Code snippets and more...</description>
	<lastBuildDate>Wed, 18 Jan 2012 23:50:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Writing your own arithmetic language in F#.</title>
		<link>http://blog.gnucom.cc/2010/writing-your-own-arithmetic-language-in-f/</link>
		<comments>http://blog.gnucom.cc/2010/writing-your-own-arithmetic-language-in-f/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 19:02:08 +0000</pubDate>
		<dc:creator>sholsapp</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[F#]]></category>
		<category><![CDATA[functional programming]]></category>
		<category><![CDATA[languages]]></category>

		<guid isPermaLink="false">http://gnucom.cc/blog/?p=615</guid>
		<description><![CDATA[During a programming languages course, we were asked to write an arithmetic language. The exercise was meant to teach some fundamental ideas regarding what a programming language is. So without further delay, here is the result of my first arithmetic language. type AE = &#124; Num of int &#124; Sum of AE * AE &#160; [...]]]></description>
		<wfw:commentRss>http://blog.gnucom.cc/2010/writing-your-own-arithmetic-language-in-f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Currying in F#.</title>
		<link>http://blog.gnucom.cc/2010/currying-in-f/</link>
		<comments>http://blog.gnucom.cc/2010/currying-in-f/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 18:57:09 +0000</pubDate>
		<dc:creator>sholsapp</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[currying]]></category>
		<category><![CDATA[F#]]></category>
		<category><![CDATA[functional programming]]></category>

		<guid isPermaLink="false">http://gnucom.cc/blog/?p=608</guid>
		<description><![CDATA[Currying is a powerful programming technique that allows you to apply parameters to a function, even if you don&#8217;t have all of the parameters quite yet! This example is written in F#. Lets start with a simple example. let curry f a = f a let adder = &#40;curry &#40;fun x -&#62; x + 1&#41;&#41; [...]]]></description>
		<wfw:commentRss>http://blog.gnucom.cc/2010/currying-in-f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mapping in F#.</title>
		<link>http://blog.gnucom.cc/2010/mapping-in-f/</link>
		<comments>http://blog.gnucom.cc/2010/mapping-in-f/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 18:33:00 +0000</pubDate>
		<dc:creator>sholsapp</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[F#]]></category>
		<category><![CDATA[functional programming]]></category>
		<category><![CDATA[map]]></category>

		<guid isPermaLink="false">http://gnucom.cc/blog/?p=603</guid>
		<description><![CDATA[This is a very simple example that illustrates the the &#8216;map&#8217; concept used in functional programming. This example is written in F#. Mapping is a popular programming concept that lets you apply a function to each element of a list or collection. The return value of a map operation is another list. Because the same [...]]]></description>
		<wfw:commentRss>http://blog.gnucom.cc/2010/mapping-in-f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing F# on Ubuntu.</title>
		<link>http://blog.gnucom.cc/2009/installing-f-on-ubuntu-8-04/</link>
		<comments>http://blog.gnucom.cc/2009/installing-f-on-ubuntu-8-04/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 07:09:23 +0000</pubDate>
		<dc:creator>sholsapp</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[F#]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://gnucom.cc/blog/?p=521</guid>
		<description><![CDATA[Uninstall any Mono and MonoDevelop you may have installed with your package manager. I found that the majority of package managers had versions of Mono that were a tad too old for running F#. Afterwards, download and compile the software listed below. You do this just as you would any other Linux program. These links [...]]]></description>
		<wfw:commentRss>http://blog.gnucom.cc/2009/installing-f-on-ubuntu-8-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

