<?php
function greetUser($name) {
    echo "Hello, $name!";
}

// Calling the function with a parameter
greetUser("John");
?>