<?php function doPrint(string $value): void { echo $value . "\n"; } match (rand(0,2)) { 0 => doPrint('zero'), 1 => doPrint('one'), default => '', };
You have javascript disabled. You will not be able to edit any code.