Skip to content

Instantly share code, notes, and snippets.

@Atlante45
Created July 18, 2018 23:09
Show Gist options
  • Save Atlante45/089b266eb11d34b3401a8f0da014337a to your computer and use it in GitHub Desktop.
Save Atlante45/089b266eb11d34b3401a8f0da014337a to your computer and use it in GitHub Desktop.
Simple test script
console.log("Test Script starting.");
var counter = 0;
Script.setInterval(function() {
console.log("Counter is now: " + (++counter));
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment