Skip to content

Instantly share code, notes, and snippets.

@omas
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

  • Save omas/d3037ba4a9d0711cd894 to your computer and use it in GitHub Desktop.

Select an option

Save omas/d3037ba4a9d0711cd894 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<script>
(function main(){
var message = "降水確率を入力してください。";
var input = Number(prompt(message));
output(getMessage(input));
})();
function getMessage(probability){
//
}
function output(text){
alert(text)
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment