- Change IO.write to IO.print for output consistency in map.wren test - Add spaces after commas in array literal [1, 2, 3] to match style guide
Implement a `map` method on the List class that applies a given function `f` to each element, returning a new list with the transformed values. Includes a test case verifying incrementing each element by 1.