mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
9 lines
106 B
Swift
9 lines
106 B
Swift
if #available(macOS 142, *) {
|
|
print(1)
|
|
}
|
|
|
|
if #unavailable(iOS 10, watchOS 10, macOS 10) {
|
|
print(2)
|
|
}
|
|
|