Specify export int var min value only

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By exuin

See question something something

:bust_in_silhouette: Reply From: estebanmolca

If I did not misunderstand, specify the desired minimum value first, then in the maximum value put the maximum value that an INT type can contain.
The constant INF does not work for this case.

export(int,0, 9223372036854775807) var my_variable

I get an error that the value is too high if I try that.

exuin | 2021-03-12 14:54