Is break n broken in Jmol 14.0.4?

function xxx {
    for (i=0;i<4;i++) {
        for (j=0;j<4;j++) {
    print i
    break 0
        }
    }
}

xxx
0 \
1  \ ok
2  /
3 /

function xxx {
    for (var i=0;i<4;i++) {
        for (var j=0;j<4;j++) {
    print i
    break 1
        }
    }
}
xxx
0 \ not ok, function called twice?
0 /
------------------------------------------------------------------------------
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments & Everything In Between.
Get a Quote or Start a Free Trial Today. 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk
_______________________________________________
Jmol-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jmol-users

Reply via email to