Ugo Cei wrote:

I am feeling a little confused. What is the expected behavior of te following flowscript code:

var x = 0;

function fun() { print(++x); }

when it is invoked multiple times by the same user?

I am always getting "1" (with 2.1.8-rc1) as if the value of the global variable wasn't retained between invocations. I expected to get an incrementing sequence of values.

    Ugo

I am not sure, but try this code

x = 0; // without var

function fun() { print(++x); }


--
Vincent Jaulin
Ingénieur Informatique
AJLSM

Reply via email to