_includes/code/hello.php (8 lines of code) (raw):

<?php function main(array $args) : array { $name = $args["name"] ?? "stranger"; $greeting = "Hello $name!"; echo $greeting; return ["greeting" => $greeting]; }