Sign in
llvm
/
lldb
/
release_39
/
.
/
packages
/
Python
/
lldbsuite
/
test
/
lang
/
objc
/
modules-incomplete
/
myModule.m
blob: d6a2619d8016bc422ef3cfa132ca39f3bfe482fa [
file
] [
log
] [
blame
]
#include
"myModule.h"
#include
"stdio.h"
@implementation
MyClass
{
};
-(
void
)
publicMethod
{
printf
(
"Hello public!\n"
);
}
-(
int
)
privateMethod
{
printf
(
"Hello private!\n"
);
return
5
;
}
@end