- or download this
1;
- or download this
$result = use Some::Module; # illegal
- or download this
# file hash.pl
# anonymous hash reference
...
data => [1,2,3],
}
__END__
- or download this
#!/usr/bin/perl
# file program.pl
...
my $var = require './hash.pl';
dd $var;
__END__
- or download this
{ data => [1, 2, 3], name => "foo" }