Files
Basalt2/node_modules/shiki/samples/objective-c.sample
Robert Jelic 5c15cf28fa Test
2025-02-10 07:12:35 +01:00

14 lines
448 B
Plaintext

@interface classname : superclassname {
// instance variables
}
+ classMethod1;
+ (return_type)classMethod2;
+ (return_type)classMethod3:(param1_type)param1_varName;
- (return_type)instanceMethod1With1Parameter:(param1_type)param1_varName;
- (return_type)instanceMethod2With2Parameters:(param1_type)param1_varName
param2_callName:(param2_type)param2_varName;
@end
// From https://en.wikipedia.org/wiki/Objective-C