Skip to content

Instantly share code, notes, and snippets.

@kalub92
Created March 12, 2018 23:27
Show Gist options
  • Save kalub92/b9d6cbea6325410c93541b62964cb327 to your computer and use it in GitHub Desktop.
Save kalub92/b9d6cbea6325410c93541b62964cb327 to your computer and use it in GitHub Desktop.
import Foundation
struct Stack {
private var items: [String] = []
func peek() -> String {
guard let topElement = items.first else { fatalError("This stack is empty.") }
return topElement
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment