Click here to Skip to main content
15,885,890 members
Articles / Programming Languages / C#

Writing your first Domain Specific Language, Part 2 of 2

Rate me:
Please Sign up or sign in to vote.
5.00/5 (26 votes)
3 Sep 2008CPOL12 min read 85.6K   1.1K   75  
A guide to writing a compiler in .NET for beginners, using Irony.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace FreightLanguageCompiler
{
	internal interface IJavascriptGenerator
	{
		void GenerateScript(StringBuilder builder);
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
China China
Daniel has a Bachelor of Science with First Class Honours from the University of Auckland, and has designed and developed software in companies large and small.

Comments and Discussions