NEW: Generics e.g. new System.Collections.Generic.List{System.Int32}()
NEW: Generic methods e.g. list.ConvertAll{System.Double}( function (x) { return x * x; });
NEW: functions as delegates
NEW: Indexers on .NET Arrays
NEW: Speed optimizations
NEW: .NET Enumerations
NEW: Updated Array and String functions
NEW: Iteration on IEnumerable objects in "for in" loops
BUG: Scopes where not correclty handled everywhere