Skip to content

Commit 6122ed1

Browse files
authored
Merge pull request kodecocodes#524 from remlostime/Trie-Swift
[Swift 4] Update Trie
2 parents 7a49e74 + c18e01c commit 6122ed1

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

Trie/Trie/Trie/Trie.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
// Copyright © 2016 Rick Zaccone. All rights reserved.
77
//
88

9+
// last checked with Xcode 9.0b4
10+
#if swift(>=4.0)
11+
print("Hello, Swift 4!")
12+
#endif
13+
914
import Foundation
1015

1116
/// A node in the trie

Trie/Trie/Trie/ViewController.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
// Copyright © 2016 Rick Zaccone. All rights reserved.
77
//
88

9+
// last checked with Xcode 9.0b4
10+
#if swift(>=4.0)
11+
print("Hello, Swift 4!")
12+
#endif
13+
914
import Cocoa
1015

1116
class ViewController: NSViewController {

Trie/Trie/TrieTests/TrieTests.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
// Copyright © 2016 Rick Zaccone. All rights reserved.
77
//
88

9+
// last checked with Xcode 9.0b4
10+
#if swift(>=4.0)
11+
print("Hello, Swift 4!")
12+
#endif
13+
914
import XCTest
1015
@testable import Trie
1116

0 commit comments

Comments
 (0)