Skip to content

Instantly share code, notes, and snippets.

@ayasuda
Created June 8, 2016 09:31
Show Gist options
  • Save ayasuda/533070e15ffc7b06bbba056abb095bac to your computer and use it in GitHub Desktop.
Save ayasuda/533070e15ffc7b06bbba056abb095bac to your computer and use it in GitHub Desktop.
function myFunction() {
// 入力した名前を表示するプログラムです。
var name = Browser.inputBox("名前を入れてください");
var output_string = "ようこそ" + name + "さん";
Browser.msgBox(output_string);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment