Extract file reading and module loading into dedicated io.c/io.h, and VM creation into vm.c/vm.h, removing inline static functions from main.c. Add new source files to the Xcode project build phases and file references. Fix debug dump label for OBJ_RANGE from "[fn %p]" to "[range %p]".
Add explicit IncludePath property to both Debug and Release configurations in wren.vcxproj, pointing to the src/include directory, and update all source and header file paths in wren.vcxproj.filters to reflect the new directory structure with cli/ and vm/ subdirectories.
Update all ClCompile and ClInclude relative paths in wren.vcxproj to reflect the new src/cli/ and src/vm/ directory structure, and append Visual Studio cache and user-specific file patterns to .gitignore to prevent committing build artifacts.