Skip to content

Instantly share code, notes, and snippets.

@yabenatti
Created January 21, 2019 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yabenatti/dcbbb2b3a193b2d14dd9fc354f4a7b0f to your computer and use it in GitHub Desktop.
Save yabenatti/dcbbb2b3a193b2d14dd9fc354f4a7b0f to your computer and use it in GitHub Desktop.
HelloWorldObjc
- (NSString *)getName {
return @"Yasmin Benatti";
}
- (void)helloWorld {
NSLog(@"Hello %@", [self getName]);
}
[self helloWorld];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment