Skip to content

Instantly share code, notes, and snippets.

@Darmaal
Created September 5, 2016 11:00
Show Gist options
  • Save Darmaal/3572131e39d3a50705495ef86ce266cd to your computer and use it in GitHub Desktop.
Save Darmaal/3572131e39d3a50705495ef86ce266cd to your computer and use it in GitHub Desktop.
import Foundation
class Planet {
let name:String
let description:String
init (name:String, description:String) {
self.name = name
self.description = description
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment