We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e0ae64 commit 554dfa4Copy full SHA for 554dfa4
Linear Regression/LinearRegression.playground/Contents.swift
@@ -2,6 +2,11 @@
2
3
import Foundation
4
5
+// last checked with Xcode 4.0b4
6
+#if swift(>=4.0)
7
+print("Hello, Swift 4!")
8
+#endif
9
+
10
let carAge: [Double] = [10, 8, 3, 3, 2, 1]
11
let carPrice: [Double] = [500, 400, 7000, 8500, 11000, 10500]
12
var intercept = 0.0
0 commit comments