In the project build settings, there is a "Swift Compiler - Languages" block, which stores information about the Swift language version in key-value format. It will show you the entire available (supported) version of the Swift language for your Xcode and the active version also with a checkmark.
► ( ) ► ► ( 'swift_version' ) Swift ► Swift ► , ( ).
, :

Swift, .
print("Hello, Swift 5.2")
print("Hello, Swift 5.1")
print("Hello, Swift 5.0")
print("Hello, Swift 4.2")
print("Hello, Swift 4.1")
print("Hello, Swift 4.0")
print("Hello, Swift 3.2")
print("Hello, Swift 3.0")
print("Hello, Swift 2.2")
print("Hello, Swift 2.1")
print("Hello, Swift 2.0")
print("Hello, Swift 1.2")
print("Hello, Swift 1.1")
print("Hello, Swift 1.0")
Playground ( Xcode 11.x)
