Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80551 views
1
test_label1: while(true) {
2
break test_label1;
3
continue test_label1;
4
}
5
6
function nest() {
7
test_label2: while(true) {
8
break test_label2;
9
continue test_label2;
10
}
11
};
12