Created
April 14, 2019 17:20
-
-
Save Weiyuan-Lane/ea72eb48b406258f89b06863b8d6d852 to your computer and use it in GitHub Desktop.
Simple Google Apps Scripts code for testing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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