CodePlexProject Hosting for Open Source Software
namespace Example: import System; import MetaSharp.Transformation; grammar HelloX < Parser: Main = x:Identifier -> { Console.WriteLine("Hello " + x + "!"); return true; } end end
var g = new HelloX(); g.Parse("World");
Hello World!
Last edited Jun 11, 2011 at 4:24 PM by justinc, version 29
Sign in to join this project.