Last active
September 28, 2016 14:13
-
-
Save Kureev/dd2a73a2041715c9e1b10335c8f1e9d2 to your computer and use it in GitHub Desktop.
ChakraProxy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Foundation/Foundation.h> | |
@interface ChakraProxy : NSObject | |
-(void)run; | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "ChakraProxy.h" | |
@implementation ChakraProxy | |
-(void)run { | |
NSLog(@"Hello from the JSVM thread!"); | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment