Hi, with my new iMac I want to continue learning swift, I was told that the playground is a good tool and I trust.
I got the Xcode/New/Playground file and wrote some code - see it :
```import Cocoa
var greeting = "Hello, playground"
for i in 1...10{
print (i)
}
The same code runs on Xcode 9.2 (9C40b)
I can't help myself 🥲
Uwe
Edit:
I downloaded Michael Kofler's Swift 5 examples and they even did not run