exercism/php/hello-world/hello-world.php

14 lines
236 B
PHP
Raw Normal View History

2016-08-15 19:08:39 +00:00
<?php
//
// This is only a SKELETON file for the "Hello World" exercise.
// It's been provided as a convenience to get you started writing code faster.
//
function helloWorld($name = null)
{
//
// YOUR CODE GOES HERE
//
}