What are your plans for LINQ (Expression, Lambda, ...) support in cobra?
The plan is to fully embrace it. Right now Cobra has LINQ Jr:
names = for name in names where name.trim.length get name.trim
So you can enumerate, filter and transform. Obviously there's a lot missing and it's not backed by expression trees so it's not the "real thing". But it was a good start for .NET 2.0.