テーマ:Eclipse
var hello = function() { console.log('hello'); // helloを表示 } hello();
<?php echo "hello"; ?>
public class Hello { public static void main(String[] args) { System.out.println("hello"); } }