blob: bdd88cb6a7a57274049028949c62d5ebb0d86221 [file] [log] [blame]
<?php
// Licensed to the Apache Software Foundation (ASF) under one or more contributor
// license agreements; and to You under the Apache License, Version 2.0.
function main(array $args) : array {
$str = $args['delimiter'] . " ☃ " . $args['delimiter'];
echo $str . "\n";
return ["winter" => $str];
}