Вопросы PHP в задачах

<?php
function showMessage($hello=false){
  echo ($hello)?'hello':'bye';
}
?>
Fine Falcon