<?php
function sayHello() {
    echo "Hello, World!";
}

// Calling the function
sayHello();
?>