Created
February 20, 2021 05:21
-
-
Save thatswiftguy/6223690a4c40f76fa27cd1b9fab0003a to your computer and use it in GitHub Desktop.
Creating an instance of book structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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