My attempts at exercism.org
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 8 lines 139 B view raw
1<?php 2 3declare(strict_types=1); 4 5function reverseString(string $text): string 6{ 7 return implode("", array_reverse(str_split($text))); 8}