Raku-Kurs / Fortgeschritten / Container / Geordnete Container / Flattening und Itemisierung

Quiz — Verschachtelte Arrays

Was gibt das folgende Programm aus?

my @a = 1, 2, 3;
my @b = 4, 5;
my @c = @a, @b;

say @c.elems;
05
12
03
00

Kursnavigation

Flattening und Itemisierung   |   Ein Array aliasieren