Vibeset

Objective-C

Objective-C adds Smalltalk-style messaging on top of C. For decades it was the main language for developing on Mac, iPhone and iPad, before Swift arrived. It's still present in legacy codebases and Apple frameworks.

Para qué se usa

A favor

En contra

Ecosistema

Ejemplo

#import <Foundation/Foundation.h>
int main() {
  NSLog(@"¡Hola, mundo!");
  return 0;
}