Skip to content

Commit 554dfa4

Browse files
committed
Linear Regression updated to Swift 4
1 parent 0e0ae64 commit 554dfa4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Linear Regression/LinearRegression.playground/Contents.swift

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
import Foundation
44

5+
// last checked with Xcode 4.0b4
6+
#if swift(>=4.0)
7+
print("Hello, Swift 4!")
8+
#endif
9+
510
let carAge: [Double] = [10, 8, 3, 3, 2, 1]
611
let carPrice: [Double] = [500, 400, 7000, 8500, 11000, 10500]
712
var intercept = 0.0

0 commit comments

Comments
 (0)