Skip to content

Instantly share code, notes, and snippets.

@SlaunchaMan
Created August 5, 2015 21:32
Show Gist options
  • Save SlaunchaMan/614c1cb04ad01ca2f9fa to your computer and use it in GitHub Desktop.
Save SlaunchaMan/614c1cb04ad01ca2f9fa to your computer and use it in GitHub Desktop.
Objective-C → Swift
import Foundation
class Dog: NSObject {
var breed: String
var height: Double
var color: String
var weight: Double
init(breed: String, newHeight: Double, newColor: String, newWeight: Double)
func description() -> String
func bark()
func wagTail()
func whine()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment