Skip to content

Instantly share code, notes, and snippets.

@an-indya
Created May 13, 2018 03:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save an-indya/0dc3a31b35023b9606dd4658c4c028ba to your computer and use it in GitHub Desktop.
Save an-indya/0dc3a31b35023b9606dd4658c4c028ba to your computer and use it in GitHub Desktop.
class Books {
let bookName: String
let author: String
init(bookName: String, author: String) {
self.bookName = bookName
self.author = author
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment