<?php
function helloWord(){
	echo 'hello';
}

function helloWord($msg){
	echo $msg;
}