RosettaCodeData/Task/Named-parameters/E/named-parameters-2.e

9 lines
138 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
? printName(["first" => "John"])
?, John
? printName(["last" => "Doe"])
Doe
? printName(["first" => "John", "last" => "Doe"])
Doe, John