Skip to content

Instantly share code, notes, and snippets.

@bjartwolf
Created March 20, 2013 13:36
Show Gist options
  • Save bjartwolf/5204681 to your computer and use it in GitHub Desktop.
Save bjartwolf/5204681 to your computer and use it in GitHub Desktop.
Just the simplest ever template
using System;
using Antlr4.StringTemplate;
namespace stringtemplatetest
{
class Program
{
static void Main(string[] args)
{
var hello = new Template("Hello, $name$", '$', '$');
hello.Add("name", "Bjorn Einar");
Console.Out.WriteLine(hello.Render());
Console.ReadLine();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment