Newer
Older
hello-programmer-world / public / sample / tips / sample.php
@h.sakamoto h.sakamoto 1 day ago 80 bytes commit
<?php

function add($a, $b)
{
    return $a + $b;
}

echo add(5, []) . PHP_EOL;