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

9 lines
138 B
Text
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
? printName(["first" => "John"])
?, John
? printName(["last" => "Doe"])
Doe
? printName(["first" => "John", "last" => "Doe"])
Doe, John