Skip to content

Commit bdabfe0

Browse files
authored
Merge pull request kodecocodes#788 from mandyreal/swift-4-2-ordered-array
[Swift 4.2]Update Ordered Array
2 parents b732b30 + 2a29718 commit bdabfe0

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Ordered Array/OrderedArray.playground/Contents.swift

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
//: Playground - noun: a place where people can play
22

3-
// last checked with Xcode 9.0b4
4-
#if swift(>=4.0)
5-
print("Hello, Swift 4!")
6-
#endif
3+
74

85
public struct OrderedArray<T: Comparable> {
96
fileprivate var array = [T]()

0 commit comments

Comments
 (0)