• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"use strict";
2{
3    let a = [1, 2, 3];
4
5    function aa() {
6        print(a);
7    }
8
9    function b() {
10        for (let i of a) {
11            let j = a;
12            if (i == 2) {
13                continue;
14            }
15
16            (() => {
17                print(i, j);
18            })()
19        }
20    }
21    b();
22}
23