We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acc61b2 commit c679dcbCopy full SHA for c679dcb
Fixed Size Array/FixedSizeArray.playground/Contents.swift
@@ -1,5 +1,10 @@
1
//: Playground - noun: a place where people can play
2
3
+// last checked with Xcode 9.0b4
4
+#if swift(>=4.0)
5
+ print("Hello, Swift 4!")
6
+#endif
7
+
8
/*
9
An unordered array with a maximum size.
10
@@ -53,3 +58,4 @@ array.append(2)
53
58
array[1]
54
59
array.removeAt(index: 0)
55
60
array.removeAll()
61
0 commit comments