<?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>Channel 9 Forums - Coffeehouse - A Modular Language Built with F#</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Forums/rss"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 Forums - Coffeehouse - A Modular Language Built with F#</title>
		<link>http://channel9.msdn.com/Forums</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Forums</link>
	<language>en</language>
	<pubDate>Sat, 25 May 2013 15:02:38 GMT</pubDate>
	<lastBuildDate>Sat, 25 May 2013 15:02:38 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>4</c9:totalResults>
	<c9:pageCount>-4</c9:pageCount>
	<c9:pageSize>-1</c9:pageSize>
	<item>
		<title>Coffeehouse - A Modular Language Built with F#</title>
		<description><![CDATA[<p>Hi&nbsp;C9 friends!</p><p>I've designed a language that I plan to implement soon in F#. It is not your ordinary language, but a modular language that is usefully-defined only once a user-defined 'language module' is plugged in. It is in the vein of the modern 'language workbench' tools, but far more lightweight. SICP readers will know it as the metalinguistic abstraction. I will explain the motiviation for this language, and will then paste the current spec for discussion.</p><p>After many years of typical programming, I've concluded that imperative approaches to programming generally lead to monolothic code bases. This is regardless of the mercilessness with which refactoring is applied. I have concluded that any time one wishes to solve a non-trivial problem in programming, one should find a declarative way to solve that problem. The language I provide gives a foundation upon which declarative languages can be built to solve these problems, thus removing the main impediment to using declarative techniques to solve normal problems.</p><p>By customizing the language with an appropriately-defined module, one can express the declarative languages needed to solve programming problems normally implemented in the imperative style. Even high-grade functional programmers will concede that imperative programming has a place in simulation and UI development. With the modular language and one of the languages implemented with it below (DOL), I will try revoke that concession. I will show that simulations and UIs, the typical bread and butter of high-level imperative programming (OOP), are better implemented with a declarative language.</p><p>Below&nbsp;is the spec as it is. Please note some formatting was lost. Also note that the syntax is a bit ugly due to the use of s-expressions. I am using a very simple syntax solution to make the language as implementable for myself as possible. I would hope to improve the syntax in a fork later.</p><p>If anyone has any questions in person or would like a copy of the more readable original spec, please mail to <a>bryanedds@yahoo.com</a> . Thanks all for reading!</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/A-Modular-Language-Built-with-F/c9e34aed30c3499299649f8f00551f93#c9e34aed30c3499299649f8f00551f93</link>
		<pubDate>Wed, 02 Nov 2011 05:09:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/A-Modular-Language-Built-with-F/c9e34aed30c3499299649f8f00551f93#c9e34aed30c3499299649f8f00551f93</guid>
		<dc:creator>bryanedds</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/bryanedds/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - A Modular Language Built with F#</title>
		<description><![CDATA[<p>Sorry guys, I tried to post the spec, but this forum just won't display it properly. I uploaded it to a file sharing site here - <a href="http://www.4shared.com/document/KL82kgvv/AML.html">http://www.4shared.com/document/KL82kgvv/AML.html</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/A-Modular-Language-Built-with-F/023b4f575a4a47a892929f8f00572565#023b4f575a4a47a892929f8f00572565</link>
		<pubDate>Wed, 02 Nov 2011 05:17:17 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/A-Modular-Language-Built-with-F/023b4f575a4a47a892929f8f00572565#023b4f575a4a47a892929f8f00572565</guid>
		<dc:creator>bryanedds</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/bryanedds/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - A Modular Language Built with F#</title>
		<description><![CDATA[<p>If you're serious about writing a new programming language, then you really need to demonstrate how your language differs from other languages. In particular it must do one of the following:</p><p>a) Be nicer for the programmer, either because it is faster for them to write, easier for them to use, more elegant for certain classes of problem or catches more programmer errors earlier on</p><p>b) Demonstrate that the resulting program can do something that is otherwise very difficult to do in traditional languages (e.g. faster to&nbsp;parallelize, easier to run on clusters)</p><p>c) Or just be substantially &quot;better&quot; for a particular class of problem.</p><p>&nbsp;</p><p>Secondly it must fulfil all of the following criteria:</p><p>i) If you can think of it, and it is reasonably within the scope of the language, it must be possible to write a program to do it in your language (i.e. the language must be &quot;complete&quot;)</p><p>ii) Are there common types of problem which your language are much worse than other languages for programmers? For runtime? For compile-time? Bear in mind that learning a programming language - no matter how elegant it may eventually seem - takes time away from the programmer actually doing stuff, so the benefits need to substantially outweigh the problems.</p><p>&nbsp;</p><p>And finally before anyone will pick up your language you need to:</p><p>1) Write some common programs (not just &quot;Hello World&quot;, but that's always a good start) written in the language</p><p>2) Preferably write a compiler for your language, and if necessary a virtual machine - or at the very least write an interpreter (no matter how slow) so that people can play with your language.</p><p>&nbsp;</p><p>&nbsp;</p><p>I don't mean to stomp on your work, and I'm sorry if it sounds like it, but there are lots of languages out there and if you want your language to take off you really need to show the programmers who will have to learn the language what benefit they'll be getting and give them the tools to use the language - otherwise they'll never use it.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/A-Modular-Language-Built-with-F/bb7abf9995484097b5709f8f00bbd812#bb7abf9995484097b5709f8f00bbd812</link>
		<pubDate>Wed, 02 Nov 2011 11:23:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/A-Modular-Language-Built-with-F/bb7abf9995484097b5709f8f00bbd812#bb7abf9995484097b5709f8f00bbd812</guid>
		<dc:creator>evildictaitor</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/evildictaitor/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - A Modular Language Built with F#</title>
		<description><![CDATA[<p>I found a&nbsp;more relevant place&nbsp;to&nbsp;have this discussion - <a href="http://hubfs.fpish.net/topic/Some/0/74051">http://hubfs.fpish.net/topic/Some/0/74051</a>. Sorry for the OT thread.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/A-Modular-Language-Built-with-F/afceb9dfe80243b58d209f8f01365e13#afceb9dfe80243b58d209f8f01365e13</link>
		<pubDate>Wed, 02 Nov 2011 18:50:00 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/A-Modular-Language-Built-with-F/afceb9dfe80243b58d209f8f01365e13#afceb9dfe80243b58d209f8f01365e13</guid>
		<dc:creator>bryanedds</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/bryanedds/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>