<?

function Talk($noisefn) {
  echo $noisefn()."\n";
}

Talk( function() { return 'ruff'; });

?>
