linux-packaging-mono/mcs/tests/test-interpolation-03.cs

12 lines
209 B
C#
Raw Permalink Normal View History

using System;
public static class Test {
public static void Main() {
RunTest(() => Console.WriteLine ($"Initializing the map took {1}ms"));
}
static void RunTest (Action callback)
{
callback();
}
}