linux-packaging-mono/mcs/tests/test-static-using-05.cs

11 lines
191 B
C#
Raw Normal View History

using static System.Console;
using static System.Linq.Enumerable;
class Test
{
static void Main()
{
var range = Range (5, 17);
WriteLine (range.Where (i => i % 2 == 0).Count ());
}
}