# Arrays/Lists

    # The , is the Perl 6 list operator--except for the empty list: ()

    my @list = 1, 2, 3;

    say @list.WHAT;  # (Array)
    say @list.perl;  # Array.new(1, 2, 3)

    @list = ();      # empty list
    say @list.perl;  # Array.new()