<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - Taking Efficiency One Step Further - F#</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Blogs/matthijs/Taking-Efficiency-One-Step-Further-FSharp/RSS"></atom:link>
	<image>
		<url>http://ecn.channel9.msdn.com/o9/previewImages/100/472546_100x75.jpg</url>
		<title>Channel 9 - Taking Efficiency One Step Further - F#</title>
		<link></link>
	</image>
	<description>Microsoft Research describes F# as &amp;quot;a scripted/functional/imperative/object-oriented programming language&amp;quot;. Combining all those aspects in one language is certainly not an easy task, but they&#39;ve done a good job of it. F# is interesting both as a language
 to actually consider for your projects and as a source of features that might make it into the mainstream .NET languages tomorrow. The session uses many examples to give you a good general overview of F#.


This video is recorded at the Dutch DevDays in Den Haag The Netherlands in June 2009. DevDays is the largest industry event for developers in the Netherlands. Thousands of professional developers visit DevDays yearly to keep in touch with the latest developments
 in their field. </description>
	<link></link>
	<language>en</language>
	<pubDate>Sat, 18 May 2013 09:15:41 GMT</pubDate>
	<lastBuildDate>Sat, 18 May 2013 09:15:41 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Taking Efficiency One Step Further - F#</title>
		<description>
			<![CDATA[
<p>Thanks for posting this. It is the start of a compelling argument for me to explore this language further. F# information seems very fragmented in blogs, sample chapters of future books,&nbsp;etc For me, F# needs an &quot;Annotated Reference Manual&quot; equivalent.</p>
<p>However we make do, and this was good. Are there videos of the other two talks&nbsp;Oliver Sturm gave?</p>
<p>posted by GraemeBlack</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/matthijs/Taking-Efficiency-One-Step-Further-FSharp#c633812706280000000</link>
		<pubDate>Mon, 22 Jun 2009 12:30:28 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/matthijs/Taking-Efficiency-One-Step-Further-FSharp#c633812706280000000</guid>
		<dc:creator>GraemeBlack</dc:creator>
	</item>
	<item>
		<title>Re: Taking Efficiency One Step Further - F#</title>
		<description>
			<![CDATA[
<p>Thanks.</p>
<p>We're in the process of getting the rest of the devdays videos online. We're still waiting for the videos. We have to process them and upload them to channel9. Lot of work. I would suggest you subscribe to this RSS feed:
<a href="http://channel9.msdn.com/tags/DevDays&#43;2009&#43;NL/"><a href="http://channel9.msdn.com/tags/DevDays+2009+NL/RSS/">http&#58;&#47;&#47;channel9.msdn.com&#47;tags&#47;DevDays&#43;2009&#43;NL&#47;RSS&#47;</a></a>&nbsp;you will get notified when we post new videos.</p>
<p>&nbsp;</p>
<p>posted by Matthijs</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/matthijs/Taking-Efficiency-One-Step-Further-FSharp#c633813424190000000</link>
		<pubDate>Tue, 23 Jun 2009 08:26:59 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/matthijs/Taking-Efficiency-One-Step-Further-FSharp#c633813424190000000</guid>
		<dc:creator>Matthijs</dc:creator>
	</item>
	<item>
		<title>Re: Taking Efficiency One Step Further - F#</title>
		<description>
			<![CDATA[
<p>Inmiddels een paar maanden verder. Hoe staat het met de andere filmpjes?</p>
<p>posted by boetje</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/matthijs/Taking-Efficiency-One-Step-Further-FSharp#c633868897260000000</link>
		<pubDate>Wed, 26 Aug 2009 13:22:06 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/matthijs/Taking-Efficiency-One-Step-Further-FSharp#c633868897260000000</guid>
		<dc:creator>boetje</dc:creator>
	</item>
	<item>
		<title>Re: Taking Efficiency One Step Further - F#</title>
		<description>
			<![CDATA[
<p>I t was very interesting. I was wondering if anyone knows the reason behind a specifict F# design decision.</p>
<p>About the pipe operator: |&gt;<br>
Why is a |&gt; b c interpreted as a |&gt; (b c) instead of (a |&gt; b) c ?&nbsp;Isn't left to right most logical?</p>
<p>A more specific example:</p>
<p>&nbsp;</p>
<p>let multiply a b = a * b;;</p>
<p>let substract a b = a - b;;</p>
<p>&nbsp;</p>
<p>multiply 2 3 |&gt; substract 10;;<br>
returns 4</p>
<p>so it is interpreted as:<br>
multiply 2 3 |&gt; (substract 10);;<br>
<br>
while it seems logical to interpret this as:<br>
(multiply 2 3 |&gt; substract) 10;;</p>
<p>&nbsp;</p>
<p>----</p>
<p>furthermore,&nbsp;in response to the question from your audience, about inserting the middle parameter, you could have answerd:<br>
<br>
let answer a b c = a&nbsp;/ b - c;;</p>
<p>&nbsp;</p>
<p>if you want to insert the middle parameter b,</p>
<p>&nbsp;</p>
<p>(multiply 2 3 |&gt; answer 30) 4;;</p>
<p>will yield the desired result...</p>
<p>posted by realbart</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/matthijs/Taking-Efficiency-One-Step-Further-FSharp#c633882779440000000</link>
		<pubDate>Fri, 11 Sep 2009 14:59:04 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/matthijs/Taking-Efficiency-One-Step-Further-FSharp#c633882779440000000</guid>
		<dc:creator>realbart</dc:creator>
	</item>
</channel>
</rss>