- Prepend a space to C_FORMAT_LINE and WREN_FORMAT_LINE for consistent column alignment
- Add hr() helper function to print horizontal separators for readability
- Change C metrics label from empty string to "C" and WREN label from empty to "WREN"
- Update source directories from "src/vm" and "src/optional" to "deps/wren/src/vm" and "deps/wren/src/optional" to match actual project structure
Extend cross-platform tests to verify Platform.name returns one of seven known
OS strings and assert Process.version splits into exactly three numeric
components, while fixing missing trailing newline in isPosix test file.
Add ALLOCATE macro alongside existing FINALIZE macro to provide symmetric
handling of foreign method allocation and finalization in the module
registry. Update File class bindings to use the new ALLOCATE macro for
fileAllocate and FINALIZE for fileFinalize, replacing the previous
FINALIZER macro usage.