<?php /** * @param non-empty-string $message */ function write(string $message, float|int|string ...$args) { $args = array_values($args); printf($message, ...$args); } write("Hello, %s! Hope you are having a nice %s!", "X", args: "weekend");
You have javascript disabled. You will not be able to edit any code.