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

16 lines
311 B
Plaintext

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");
}
%%
}