<?

function my_function($arg){
        print "Hejsa.\n";
        print $arg . "\n";
}

my_function("Hello world.");

?>