class Dog {
func bark() {
print("woof") // This is a comment
}
}
class ViewController: UIViewController {
let kit = Dog()
kit.bark()
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
}