Skip to content

Commit c679dcb

Browse files
committed
Fixed Size Array to Swift 4
Tested Fixed Size Array with Swift 4 and Xcode 9.0b4
1 parent acc61b2 commit c679dcb

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Fixed Size Array/FixedSizeArray.playground/Contents.swift

+6
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
/*
49
An unordered array with a maximum size.
510

@@ -53,3 +58,4 @@ array.append(2)
5358
array[1]
5459
array.removeAt(index: 0)
5560
array.removeAll()
61+

0 commit comments

Comments
 (0)