Skip to content

Commit be012cc

Browse files
committed
Migrated to Swift 4
1 parent 0e0ae64 commit be012cc

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

AVL Tree/AVLTree.playground/Contents.swift

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
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
7+
38
let tree = AVLTree<Int, String>()
49

510
tree.insert(key: 5, payload: "five")

0 commit comments

Comments
 (0)