We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fd0fb3e + 9b6ca04 commit aefcaedCopy full SHA for aefcaed
LRU Cache/LRUCache.playground/Contents.swift
@@ -1,3 +1,8 @@
1
+// last checked with Xcode 9.0b4
2
+#if swift(>=4.0)
3
+print("Hello, Swift 4!")
4
+#endif
5
+
6
let cache = LRUCache<String>(2)
7
cache.set("a", val: 1)
8
cache.set("b", val: 2)
0 commit comments