PowerShell - Cross-Platform PowerShell
What output will this PowerShell Core script produce when run on macOS?
if ($PSVersionTable.Platform -eq 'Unix') { 'Running cross-platform' } else { 'Running Windows only' }