Named parameters: Difference between revisions

Content added Content deleted
(Added Kotlin)
m (→‎{{header|Perl 6}}: Combine files to make runnable code)
Line 1,034: Line 1,034:
say join ' ', @e;
say join ' ', @e;
say join ' ', keys %f;
say join ' ', keys %f;
}
}</lang>


this particularly thorny call:
# this particularly thorny call:


<lang perl6>funkshun
funkshun
'Alfa', k1 => 'v1', c => 'Charlie', 'Bravo', 'e1',
'Alfa', k1 => 'v1', c => 'Charlie', 'Bravo', 'e1',
d => 'Delta', 'e2', k2 => 'v2';</lang>
d => 'Delta', 'e2', k2 => 'v2';</lang>