fork download
  1. #!/usr/bin/perl
  2.  
  3. my $x = 1;
  4.  
  5. my $y = \$x;
  6. my $z = \$y;
  7.  
  8. print "$x\n";
  9. print "$y\n";
  10. print "$z\n";
  11.  
Success #stdin #stdout 0s 3564KB
stdin
Standard input is empty
stdout
1
SCALAR(0x8a28870)
REF(0x8a288a0)