Hi, Now I can add single value or tubles to the pipeline, my next question is can I add a list/array:
filesUnderFolder
|> Seq.map FileInfo
my problem is I can't process this with pipeline |>, or can I?
Assembly.GetExecutingAssembly.GetFiles()
|>Array.map (fun file -> file.ReadAllText().Contains(keyword))