singrdk/base/Windows/mkunion/test/Tree.csunion

16 lines
311 B
Plaintext
Raw Permalink Normal View History

2008-11-17 18:29:00 -05:00
using System;
using NodeData = System.Int32;
%%
datatype Tree : Microsoft.Singularity.Applications.TreeTestBase {
Leaf, // Leaves do not contain data
Node(NodeData value, Tree left, Tree right)
%%
public static void Bar()
{
Console.WriteLine("Bar");
}
%%
}