Skip to content

Instantly share code, notes, and snippets.

@mostlygeek
Created January 29, 2013 02:24
Show Gist options
  • Save mostlygeek/4661169 to your computer and use it in GitHub Desktop.
Save mostlygeek/4661169 to your computer and use it in GitHub Desktop.
Actor = (function() {
var my,own,internal,state = 0;
return {
onMessage: function(msg) {
if (msg == "inc") { my = my + 1 }
// ...
}
}
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment