Skip to content

Instantly share code, notes, and snippets.

@thatswiftguy
Created February 20, 2021 05:21
Show Gist options
  • Save thatswiftguy/6223690a4c40f76fa27cd1b9fab0003a to your computer and use it in GitHub Desktop.
Save thatswiftguy/6223690a4c40f76fa27cd1b9fab0003a to your computer and use it in GitHub Desktop.
Creating an instance of book structure
struct Book {
var title : String
var pages : Int
var chapters : Int
}
var book = Book(title: "The Swift Book", pages: 1030, chapters: 12)
print(book.pages)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment