We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b81b5b1 + 679f82a commit 8f20ac1Copy full SHA for 8f20ac1
GCD/GCD.playground/Contents.swift
@@ -1,5 +1,10 @@
1
//: Playground - noun: a place where people can play
2
3
+// last checked with Xcode 9.0b4
4
+#if swift(>=4.0)
5
+print("Hello, Swift 4!")
6
+#endif
7
+
8
// Recursive version
9
func gcd(_ a: Int, _ b: Int) -> Int {
10
let r = a % b
0 commit comments