Skip to content

Commit

Permalink
Fixed Size Array to Swift 4
Browse files Browse the repository at this point in the history
Tested Fixed Size Array with Swift 4 and Xcode 9.0b4
  • Loading branch information
bobdel committed Jul 26, 2017
1 parent acc61b2 commit c679dcb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Fixed Size Array/FixedSizeArray.playground/Contents.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
//: Playground - noun: a place where people can play

// last checked with Xcode 9.0b4
#if swift(>=4.0)
print("Hello, Swift 4!")
#endif

/*
An unordered array with a maximum size.

Expand Down Expand Up @@ -53,3 +58,4 @@ array.append(2)
array[1]
array.removeAt(index: 0)
array.removeAll()

0 comments on commit c679dcb

Please sign in to comment.