static void Main(string[] args) { hello("World"); TestGeneric(); NBody.Run(args); TestSort(50000); }
static void TestNBody(int N) { Measure(() => { NBody.Run(N); }); }