*PI = \3;
Now $PI is 3:
$circum = 2 * $PI * $r;
But attempts to assign to $PI fail:
$PI = 4;
Modification of a read-only value attempted at ...