please create a tool to generate Sequence
Expected to be used like:
var sequence1 = new Sequence ();
sequence1.next ()--> return 1;
sequence1.next ()--> return 2;
in another module:
var sequence2 = new Sequence ();
sequence2.next ()--> 3;
sequence2.next ()--> 4;