challenge Hello, world!

「Hello, world!」と表示するプログラムを作ってください。

Posted feedbacks - PHP

PHPです。
1
Hello, World!


	
1
<?='Hello, World!'?>

これだけの事に無意味にクラス。無意味に関数。
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
$hello_world = new hello_world();

print $hello_world->print_word();

class hello_world{
	function hello_world(){
	}

	function print_word(){
		$str = "Hello, world!";
		return $str;
	}
}

Index

Feed

Other

Link

Pathtraq

loading...