[1..4] |> List.filter(fun x -> (x % 2) = 0)
using System.Collections.Generic; public static class Foo { public static void Main(string[] args){ Enumerable.Range(1,4).Where(x => (x % 2) == 0); } }