Skip to content

Instantly share code, notes, and snippets.

@Kureev
Last active September 28, 2016 14:13
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 Kureev/dd2a73a2041715c9e1b10335c8f1e9d2 to your computer and use it in GitHub Desktop.
Save Kureev/dd2a73a2041715c9e1b10335c8f1e9d2 to your computer and use it in GitHub Desktop.
ChakraProxy
#import <Foundation/Foundation.h>
@interface ChakraProxy : NSObject
-(void)run;
@end
#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