[ create a new paste ] login | about

Link: http://codepad.org/rVUf42NA    [ raw code | output | fork ]

sironekotoro - Perl, pasted on Sep 23:
1
2
3
4
5
6
7
my $x = 100;
my $sref = \$x;

print "$$sref\n";
$$sref += 5;

print "$$sref\n";


Output:
1
2
100
105


Create a new paste based on this one


Comments: