Skip to content

Instantly share code, notes, and snippets.

@moduscreate
Created April 20, 2012 20:02
Show Gist options
  • Save moduscreate/2431424 to your computer and use it in GitHub Desktop.
Save moduscreate/2431424 to your computer and use it in GitHub Desktop.
console = require('console');
v8 = require('builtin/v8');
var test = function() {
console.log('test executed');
return new Date().getTime();
}
__code = 'test();';
console.log(__code);
tmpObj = v8.compileScript(__code);
ret = v8.runScript(tmpObj);
v8.freeScript(tmpObj);
console.log(ret);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment