Skip to content

Instantly share code, notes, and snippets.

@Weiyuan-Lane
Created April 14, 2019 17:20
Show Gist options
  • Save Weiyuan-Lane/ea72eb48b406258f89b06863b8d6d852 to your computer and use it in GitHub Desktop.
Save Weiyuan-Lane/ea72eb48b406258f89b06863b8d6d852 to your computer and use it in GitHub Desktop.
Simple Google Apps Scripts code for testing
function alert(msg){
var ui = DocumentApp.getUi();
ui.alert(msg, ui.ButtonSet.OK);
}
function myFunction() {
alert('Hello World!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment