Did you know you can write platform-specific code without breaking a sweat? Xojo's
#If directives let you include or exclude code based on the target platform (Windows, macOS, Linux, iOS, Android, Web, Console...). Do you use conditional compilation in your projects?
#If TargetWindows
// Windows-specific code
#ElseIf TargetMacOS
// macOS-specific code
#EndIf