in Obj-C it was possible to iterate through alphabet with:
for (char x=\'A\'; x<=\'Z\'; x++) {
In Swift this isn\'t possible. Any idea h
Swift 4.2 version is much easier
for char in "abcdefghijklmnopqrstuvwxyz" { print(char) }