Fantastic four

<?php
function fantastic($n) {
   if ($n==4) return true;
   else return false;
}
?>
Vote up this code0