<?php

function test($what) {
  
  echo $what;
}

$what = "Hello World!";
test($what);

?>
