# "The integer of $x" my $foo = int($x); # "The square root of $x" my $foo = sqrt($x); # "The reference of %x" my $foo = \%x; # "The dereferenced hash of $x" my %foo = %{$x};