Hacker News new | past | comments | ask | show | jobs | submit
They're function calls right? I can't square the "message passing" conceit (implying putting message objects on queues, dequeuing etc) with the claim that Obj-C is just C with some extra stuff.
They're not direct function calls, but sugar for objc_msgSend():

https://developer.apple.com/documentation/ObjectiveC/objc_ms...

Absolutely not. It only sends a message. The receiver doesn't have to have a corresponding method and can do with that message what it will. Objective-C is a 'true' object-oriented language, like Smalltalk.
loading story #47220569
> a 'true' OOP language, like Smalltalk.

I guess Simula, which is older than Smalltalk, doesn't get a say.

loading story #47220155