How to change a constant's value in perl -
our $test; *test = \100; $test =200
i want change test
's value 200
specific reasons. possible change it?
you can use same syntax : *test = \200
btw, may want @ const::fast
.
our $test; *test = \100; $test =200
i want change test
's value 200
specific reasons. possible change it?
you can use same syntax : *test = \200
btw, may want @ const::fast
.
Comments
Post a Comment