Add Tests for incrementality

This commit is contained in:
Mihai Codoban 2016-01-14 11:52:54 -08:00
parent 68d46fefad
commit 3a8ef0f5e9
33 changed files with 712 additions and 82 deletions

View file

@ -0,0 +1,12 @@
using System;
namespace ConsoleApplication
{
public class L0
{
public static void Main(string[] args)
{
Console.WriteLine("L0 " + L11.Value() + L12.Value());
}
}
}