Skip to content

Instantly share code, notes, and snippets.

@joelmartinez
Created October 13, 2011 03:19
Show Gist options
  • Save joelmartinez/1283275 to your computer and use it in GitHub Desktop.
Save joelmartinez/1283275 to your computer and use it in GitHub Desktop.
Jint for WP7 Snippet
var engine = new JintEngine();
engine.SetFunction("alert", new Action<string>(t => MessageBox.Show(t)));
engine.Run("alert('Hello World, from dynamically interpereted JavaScript on WP7!')");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment