Skip to content

Instantly share code, notes, and snippets.

@PsychoH13
Last active December 17, 2015 19:19
Show Gist options
  • Save PsychoH13/5659602 to your computer and use it in GitHub Desktop.
Save PsychoH13/5659602 to your computer and use it in GitHub Desktop.
#import <Foundation/Foundation.h>
class MyClass {
public:
MyClass() { NSLog(@"Hello there"); }
MyClass(NSString *str) { NSLog(@"Hello %@", str); }
};
static MyClass myStatic(@"Outsider");
void testFunction(void)
{
NSLog(@"testFunction");
static MyClass var(@"Insider");
}
int main(int argc, const char * argv[])
{
@autoreleasepool
{
testFunction();
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment