In some of my formulas I didn't put in a version parameter and I want to change the formula without breaking old fractals.
If I had included something like
int param version
caption = "Version"
default = 240330
visible = @version < 240330
endparam
then I could have used code like
if @version <= 240330
; old stuff
else
; new stuff
endif
but I didn't define @version. Is there any way to code around this?
In some of my formulas I didn't put in a version parameter and I want to change the formula without breaking old fractals.
If I had included something like
````
int param version
caption = "Version"
default = 240330
visible = @version < 240330
endparam
````
then I could have used code like
````
if @version <= 240330
; old stuff
else
; new stuff
endif
````
but I didn't define @version. Is there any way to code around this?