6 lines
70 B
JavaScript
6 lines
70 B
JavaScript
// b.js:
|
|
if (b === undefined) {
|
|
b = 0;
|
|
}
|
|
b++;
|
|
print('script b: ' + b); |