How do I use macros in Perl, like I do in C?
Example:
#define value 100
print value;
I want to get the output as 100.
|
How do I use macros in Perl, like I do in C? Example:
I want to get the output as 100. |
|||||
|
|
Try the following: macro.pl
And run this code using -P switch. Example:
And use the module Filter::cpp also. |
|||||||||||||||||||||
|
|
If you just want to define constants (like your example) rather than full macros, there are a couple of perl ways to do this. Some people like:
Note that 'value' is a subroutine, not a 'variable'. This means you cannot interpolate it in strings so you have to do. The "Best Practices" crowd like:
However, unlike constant, Readonly is not part of the core perl distribution and so needs to be installed from CPAN. |
|||||||||||||||||
|
|
Perl is not C. You would be much better served by learning the corresponding Perl idioms (such as the already mentioned |
|||
|
|
|
For constants, the common way is to use a constant subroutine that will get inlined by the compiler:
or
|
|||
|
|