CocoaScript
CocoaScript copied to clipboard
How to declare class with inheritance
Hi, how to declare class with inheritance like this, or how can we achieve the same thing
class ViewController: NSViewController {
function viewDidLoad() {
super.viewDidLoad()
}
}
Thanks :)