for @foo -> \element { say element } #### my %hash; my \foo = %hash; dd %h; # Hash %h = {} foo = 42; dd %h; # Hash %h = {:FOO(42)} #### $ perl6 -e 'say BAR' ===SORRY!=== Error while compiling -e Undeclared name: BAR used at line 1 #### use DBI:from; use DBD::mysql:from; my $dbh = DBI.connect(...); # call DBI->connect(...) under the hood