Is it possible to have something like the following?
$R{${P{my_paramater}}
PS. The above throws a complilation error
Thank you.
Is it possible to have something like the following?
$R{${P{my_paramater}}
PS. The above throws a complilation error
Thank you.
That won't work, you'll have to do str($P{my_paramater})
.