In Pine script version 6, we can define a variable with var and without var. Like this sample:
var float Number1 = 0.0
and
float Number1 = 0.0
If this variable does not need the value of the previous cycle, which one of the definitions is more efficient?
I want to see the efficiency of the difference between them.