ブロック

コード
JavaScript
window.prompt('abc');
Python
def text_prompt(msg): try: return raw_input(msg) except NameError: return input(msg) text_prompt('abc')
PHP
<?php readline('abc'); ?>
window.prompt('abc');
def text_prompt(msg): try: return raw_input(msg) except NameError: return input(msg) text_prompt('abc')
<?php readline('abc'); ?>